Browse Source

nixpkgs/neovim: set tsc as compiler if available

Thomas Dy 2 years ago
parent
commit
83889ba6dc
2 changed files with 11 additions and 0 deletions
  1. 3 0
      .config/nixpkgs/neovim/lsp.lua
  2. 8 0
      .config/nixpkgs/neovim/neovim.nix

+ 3 - 0
.config/nixpkgs/neovim/lsp.lua

@@ -59,6 +59,9 @@ if vim.fn.executable("node_modules/.bin/tsc") == 1 then
       end
     }
   })
+
+  -- set compiler for :make
+  vim.cmd("compiler! tsc")
 end
 
 if vim.fn.executable("solargraph") == 1 then

+ 8 - 0
.config/nixpkgs/neovim/neovim.nix

@@ -33,6 +33,13 @@ let
       (array . (_) @parameter.inner ",")
     '';
   };
+  extra-tsc-compiler = writeTextFile {
+    name = "extra-tsc-compiler";
+    destination = "/after/compiler/tsc.vim";
+    text = ''
+      CompilerSet makeprg=node_modules/.bin/tsc\ --incremental
+    '';
+  };
   extraPath = [
     fd
     ripgrep
@@ -70,6 +77,7 @@ neovim.override {
           tree-sitter-query
         ]))
         extra-treesitter-textobjects
+        extra-tsc-compiler
       ] ++ lib.optionals withPlayground [
         playground
       ];