vim

nate 2023-10-15T05:10:10.785659Z

Anyone using the built-in neovim LSP support and have a config that you can share? Interested in trying it out over coc.nvim...

Dumch 2023-10-15T20:56:49.588729Z

Here is a good config-example with lazy and fennel https://github.com/rafaeldelboni/cajus-nfnl/tree/main

lispyclouds 2023-10-15T05:59:07.719059Z

That’s mine using lazy.nvim: https://github.com/lispyclouds/dotfiles/blob/main/nvim/lua/plugins/lsp.lua Been using the inbuilt lsp since it was made pretty much. Lemme know if I can be of help!

lispyclouds 2023-10-15T06:00:51.586629Z

Also https://github.com/lispyclouds/dotfiles/blob/main/nvim/lua/plugins/completion.lua might be of interest too

lispyclouds 2023-10-15T06:02:57.406849Z

I don’t auto install the servers, do it manually myself using the os package manager. For auto installs can try https://github.com/williamboman/mason.nvim

👆 1
lispyclouds 2023-10-15T06:05:02.598159Z

And https://github.com/VonHeikemen/lsp-zero.nvim if you don’t want to deal with any of the lower level things like the above

nate 2023-10-15T06:25:54.216179Z

Wow! Thanks for the pointers. I’ll check them out.