nix: switch to nixd cause I hate nil

This commit is contained in:
kossLAN 2024-08-31 14:43:30 -04:00
parent c2553dcb54
commit 9ce0f5f296
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
-- Exit if the language server isn't available
if vim.fn.executable('nil') ~= 1 then
if vim.fn.executable('nixd') ~= 1 then
return
end
@ -9,8 +9,8 @@ local root_files = {
}
vim.lsp.start {
name = 'nil_ls',
cmd = { 'nil' },
name = 'nixd',
cmd = { 'nixd' },
root_dir = vim.fs.dirname(vim.fs.find(root_files, { upward = true })[1]),
capabilities = require('user.lsp').make_client_capabilities(),
}