about summary refs log tree commit diff stats
path: root/home-manager
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-20 00:53:48 +0200
committerSoispha <soispha@vhack.eu>2023-08-20 00:53:48 +0200
commit01425a16f91d8bd10d28fac79119df5ee1051eb0 (patch)
treed2dbacab1c69bc519403a38d157d4706d407a96f /home-manager
parentFix(hm/conf/neovim/plugins/vimtex): Add comment about treesitter support (diff)
downloadnixos-config-01425a16f91d8bd10d28fac79119df5ee1051eb0.tar.gz
nixos-config-01425a16f91d8bd10d28fac79119df5ee1051eb0.zip
Feat(hm/conf/neovim/plugins/lsp/ccls): Init
Diffstat (limited to '')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/default.nix1
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/servers/ccls.nix5
2 files changed, 6 insertions, 0 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 dc8210d1..8ffac2e1 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
@@ -6,5 +6,6 @@
     ./servers/nil_ls.nix
     ./servers/rust-analyzer.nix
     ./servers/texlab.nix
+    ./servers/ccls.nix
   ];
 }
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/servers/ccls.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/servers/ccls.nix
new file mode 100644
index 00000000..0698bcce
--- /dev/null
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lsp/servers/servers/ccls.nix
@@ -0,0 +1,5 @@
+{...}: {
+  programs.nixvim.plugins.lsp.servers = {
+    ccls.enable = true;
+  };
+}