فهرست منبع

nixpkgs/neovim: add typescript-vim

The plugin still has better indentation than the builtin one.
Thomas Dy 2 سال پیش
والد
کامیت
38847915a7

+ 0 - 9
.config/nixpkgs/neovim/autocmd.lua

@@ -48,12 +48,3 @@ vim.api.nvim_create_autocmd('FileType', {
     vim.bo.textwidth = 80
   end,
 })
-
-vim.api.nvim_create_autocmd('FileType', {
-  pattern = 'typescript',
-  callback = function()
-    -- disable default indentation as it's pretty broken for jsdoc
-    vim.opt_local.indentexpr = nil
-    vim.opt_local.formatexpr = nil
-  end,
-})

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

@@ -31,13 +31,6 @@ 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\ --noEmit
-    '';
-  };
 
   extraPath = [
     fd
@@ -77,7 +70,6 @@ let
     ++ nixpkgsPlugins
     ++ [
       extra-treesitter-textobjects
-      extra-tsc-compiler
     ];
 in
 stdenv.mkDerivation {

+ 4 - 0
.config/nixpkgs/neovim/plugins.lua

@@ -146,3 +146,7 @@ require('treesj').setup({
     },
   },
 })
+
+-- typescript-vim compiler options
+vim.g.typescript_compiler_binary = 'node_modules/.bin/tsc'
+vim.g.typescript_compiler_options = '--incremental --noEmit'

+ 5 - 0
.config/nixpkgs/neovim/plugins/default.nix

@@ -7,6 +7,11 @@ let
       patches = [ ./fugitive-origin-head.patch ];
     };
 
+    "leafgarland/typescript-vim" = {
+      # make compiler build entire project
+      patches = [ ./typescript-vim-compiler.patch ];
+    };
+
     "nvim-telescope/telescope-fzf-native.nvim" = {
       dontBuild = false;
     };

+ 4 - 0
.config/nixpkgs/neovim/plugins/sources.json

@@ -70,5 +70,9 @@
   "LnL7/vim-nix": {
     "rev": "7d23e97d13c40fcc6d603b291fe9b6e5f92516ee",
     "sha256": "1vaprm79j0nfl37r6lw0zwd048ajd5sc9cvny59qwdl3x0zk38av"
+  },
+  "leafgarland/typescript-vim": {
+    "rev": "52f3ca3474d51f5021696ffb7297d989e49121ac",
+    "sha256": "12qcp82jkaa6nmdb0s4an29bfp9mzkkkxz2sfhm93x5506g8gk4l"
   }
 }

+ 13 - 0
.config/nixpkgs/neovim/plugins/typescript-vim-compiler.patch

@@ -0,0 +1,13 @@
+diff --git a/compiler/typescript.vim b/compiler/typescript.vim
+index 77121eb..203af9b 100644
+--- a/compiler/typescript.vim
++++ b/compiler/typescript.vim
+@@ -22,7 +22,7 @@ execute 'CompilerSet makeprg='
+       \ . escape(g:typescript_compiler_binary, ' ')
+       \ . '\ '
+       \ . escape(g:typescript_compiler_options, ' ')
+-      \ . '\ $*\ %'
++      \ . '\ $*'
+ 
+ CompilerSet errorformat=%+A\ %#%f\ %#(%l\\\,%c):\ %m,%C%m
+