summary refs log tree commit diff stats
path: root/hm/nixvim
diff options
context:
space:
mode:
Diffstat (limited to 'hm/nixvim')
-rw-r--r--hm/nixvim/config.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/hm/nixvim/config.nix b/hm/nixvim/config.nix
index cc446f1..eeb29ff 100644
--- a/hm/nixvim/config.nix
+++ b/hm/nixvim/config.nix
@@ -77,7 +77,7 @@ pkgs: {
     airline = {
       enable = true;
       settings = {
-        powerline_fonts = true;
+        powerline_fonts = 1;
       };
     };
     cmp = {
@@ -123,13 +123,13 @@ pkgs: {
       enable = true;
       servers = {
         nil_ls.enable = true;
-        rust-analyzer = {
+        rust_analyzer = {
           enable = true;
           installCargo = true;
           installRustc = true;
         };
         ltex.enable = true;
-        java-language-server.enable = true;
+        java_language_server.enable = true;
       };
     };
     lspkind = {
@@ -154,7 +154,9 @@ pkgs: {
     quickmath.enable = true;
     treesitter = {
       enable = true;
-      indent = true;
+      settings = {
+        indent.enable = true;
+      };
     };
     treesitter-context = {
       enable = true;
@@ -185,5 +187,8 @@ pkgs: {
     vimtex = {
       enable = true;
     };
+    web-devicons = {
+      enable = true;
+    };
   };
 }