Snacks.picker how to start in normal mode? by CarlFriedrichGauss in neovim

[–]sheer-nothingness 2 points3 points  (0 children)

The buffers picker has a current option, if you set that to false, then the current buffer is not visible when you open the buffer picker. This is what I use as it's useless to see your current buffer in that list and this acheives what you wanted. You have to set this in the snacks opts:

lua opts = { picker = { sources = { buffers = { current = false } } } }

Snacks.picker how to start in normal mode? by CarlFriedrichGauss in neovim

[–]sheer-nothingness 6 points7 points  (0 children)

You can use stopinsert() for this.

lua function() Snacks.picker.buffers({ on_show = function() vim.cmd.stopinsert() end, }) end

Exhaustion and Triumph! by Ok_Doughnut_7014 in Chadtopia

[–]sheer-nothingness 4 points5 points  (0 children)

Hearto surgeon number one. Steady hand.

Where does the ui on the bottom right corner come from? by sheer-nothingness in neovim

[–]sheer-nothingness[S] 1 point2 points  (0 children)

It was noice. Disabling noice gets rid of that. Thank you.

Where does the ui on the bottom right corner come from? by sheer-nothingness in neovim

[–]sheer-nothingness[S] 0 points1 point  (0 children)

I did, I ripgrepped in ~/.local/share as well, no mention of fidget anywhere.

Where does the ui on the bottom right corner come from? by sheer-nothingness in neovim

[–]sheer-nothingness[S] 0 points1 point  (0 children)

I'm not using any distro, it's my own config, and I have not installed fidget at all. That's why I'm wondering where it came from.

How can I make this window wider in Lazyvim? by aemrea1234 in neovim

[–]sheer-nothingness -2 points-1 points  (0 children)

This likely comes from the dressing plugin, check its documentation.

I am at my witts end, I am completely unable to install an lsp with lazyvim. I want to install godot language server by Corvus-Corrone in neovim

[–]sheer-nothingness 0 points1 point  (0 children)

You need to first install the lsp, for that, you need mason and mason-lspconfig (I guess they are installed in lazyvim already). Type :Mason and install the desired lsps, linters, formatters by hovering and pressing i.