diff options
author | Linnnus <[email protected]> | 2023-12-09 09:18:19 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-12-09 09:18:19 +0100 |
commit | 0da7ee17facad0ebabf02e5302c851d875a02ca3 (patch) | |
tree | 7d052f79911c8fae28c33139fedd99917e92a62d /home/neovim/lsp.nix | |
parent | 977534211effc27304b61db0e21d80d4d2539f58 (diff) |
home/{neovim,dev-utils}: Add support for Nim
Diffstat (limited to 'home/neovim/lsp.nix')
-rw-r--r-- | home/neovim/lsp.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/home/neovim/lsp.nix b/home/neovim/lsp.nix index 0870358..90ad12a 100644 --- a/home/neovim/lsp.nix +++ b/home/neovim/lsp.nix @@ -89,6 +89,9 @@ clangd = { cmd = { "${pkgs.clang-tools}/bin/clangd" }, }, + nimls = { + cmd = { "${pkgs.nimlsp}/bin/nimlsp" }, + }, }; for server, config in pairs(servers) do -- set common options |