diff options
author | Soispha <soispha@vhack.eu> | 2023-08-19 17:10:01 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-19 17:36:04 +0200 |
commit | de266305ddfcaec0e3477164b4d9bdf1a596a124 (patch) | |
tree | 0c24d98855fa602157ef84e50769aa23614ed23c /home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix | |
parent | Fix(hm/conf/nvim): Import neovim config (diff) | |
download | nixos-config-de266305ddfcaec0e3477164b4d9bdf1a596a124.zip |
Fix(hm/conf/neovim): Fully import nvim config through nixVim
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix')
-rw-r--r-- | home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix index 8d5cfaf1..dc8210d1 100644 --- a/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix +++ b/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix @@ -1,5 +1,10 @@ {...}: { - programs.nixvim.plugins.lsp.servers = { - - }; + imports = [ + ./servers/bashls.nix + ./servers/ltex.nix + ./servers/lua-ls.nix + ./servers/nil_ls.nix + ./servers/rust-analyzer.nix + ./servers/texlab.nix + ]; } |