Iordanis Petkakis

Results 535 comments of Iordanis Petkakis

@folke This still doesn't install the kotlin adapter when setting a breakpoint. Did you take a look at my previous comment? Maybe `mason-nvim-dap` should be moved out of dependencies of...

Just tried `mini.map` and indeed it draws its window right above the Symbols panel when you have both open. You would have to do `toggle_side()` to change the side where...

You must have multiple LSP servers attached to the buffer and not everyone has information about the symbol under the cursor. I noticed this when I had pyright and jedi...

I think it's because of `nvim-notify`. Try disabling it and see if you observe same behavior.

Are you able to reproduce this with default LazyVim installation?

This is default behavior for Neovim `vim.lsp.buf.hover()`. See [here](https://github.com/neovim/neovim/blob/master/runtime/lua/vim/lsp/buf.lua#L33) where it is defined. It calls `request`, which is the function just above, which returns `vim.lsp.buf_request()`. That in turn is defined...

This is what noice does (overwriting the LSP buffer handler) and you can use the option I mentioned earlier to silence those notifications. If you don't use noice, then you...

Try configuring `noice.nvim` like following ```lua return { { "folke/noice.nvim", opts = { lsp = { hover = { silent = true }, }, }, }. } ```

I believe the current implementation of the PR is better. It's decoupling the 2 plugins from each other and if you also safeguard `nvim-cmp` with `optional = true`, then all...

Also, in retrospect, I believe @dotfrag's suggestion is better because it also takes into account lazy-loading the plugin when needed.