kylo252

Results 212 comments of kylo252

cc: @abzcoding, @chase What do you guys think? Does this snippet belong in either `settings.lua` or `config..example.lua`?

Fixed for now with https://github.com/LunarVim/lunarvim.org/pull/156

how about adding it as post-install check in the installer instead? it can even append `config.lua` with that setting. I think it might be a slippery slope to start handling...

> ```shell > I see that you are using fish. Neovim is slow with fish, would you like to define another default shell for vim? > ``` the only question...

aren't there some distros which would install `fish` just for the sake of it? just because it's available doesn't necessarily mean it's the default. but what about `$FISH_VERSION`, isn't that...

Please install neovim 0.6.1+ separately, you can use scoop or the release from github. I was hoping it would be available in winget, but at this point it seems that...

can you guys try these minimal configs from cmp's wiki and see if the problem persists? - [Language-Server-Specific-Samples#rust-with-rust-toolsnvim](https://github.com/hrsh7th/nvim-cmp/wiki/Language-Server-Specific-Samples#rust-with-rust-toolsnvim) - [Language-Server-Specific-Samples#golang-gopls](https://github.com/hrsh7th/nvim-cmp/wiki/Language-Server-Specific-Samples#golang-gopls)

Here's a `minimal_init.lua` that should work: https://gist.github.com/kylo252/67878d8ef50093f6246eaa4d3b010d05 ```sh nvim -u minimal_init.lua ``` Please try it, and remember to change the server configs if you need to.

> Thanks @kylo252 I tried it out and unfortunately I cannot get the snippets in the cmp window. That is what caused the crash for me, when I used the...

@barlingo, does this work for you? ```lua -- add it to your config.lua local cmp = require "cmp" lvim.builtin.cmp.mapping[""] = cmp.mapping.confirm { behavior = cmp.ConfirmBehavior.Replace, select = true, } ```