0

I've been trying to install peek.nvim on my Windows laptop, but when I type :PeekOpen and press Enter, nothing happens.

this is my peek.lua file

return {
    "toppair/peek.nvim",
    event = { "VeryLazy" },
    build = "deno task --quiet build:fast",
    config = function()
        require("peek").setup()
        vim.api.nvim_create_user_command("PeekOpen", require("peek").open, {})
        vim.api.nvim_create_user_command("PeekClose", require("peek").close, {})
    end,
}

There was also no error in :checkhealth

Any idea?

Thank you!

1 Answer 1

1

Maybe your webview isn't working. Have a try:

require("peek").setup({ app = "browser" })
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.