marleyvim/nvim/lsp/nil.lua
punkfairie 63eb87800f
feat: Switch to nil LSP for code actions
I love that nixd gets more options but I really need the code actions.
2025-01-13 18:28:50 -08:00

14 lines
225 B
Lua

return {
cmd = { 'nil' },
filetypes = { 'nix' },
root_markers = { 'flake.nix', '.git' },
settings = {
['nil'] = {
flake = {
autoArchive = true,
autoEvalInputs = true,
},
},
},
}