neovim.nix 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. { lib
  2. , stdenv
  3. , writeShellScriptBin
  4. , writeTextFile
  5. , neovim-unwrapped
  6. , makeWrapper
  7. , fd
  8. , ripgrep
  9. , html-tidy
  10. , node-lsp
  11. , vimPlugins
  12. , fetchFromGitHub
  13. , fetchpatch
  14. , withPlayground ? false
  15. , withLuadev ? false
  16. }:
  17. let
  18. buildNeovimPlugin = attrs: stdenv.mkDerivation ({
  19. forceShare= [ "man" "info" ];
  20. installPhase = ''
  21. cp -r . $out
  22. if [ -d "$out/doc" ]; then
  23. ${neovim-unwrapped}/bin/nvim -N -u NONE -i NONE -n -E -s -V1 -c "helptags $out/doc" +quit!
  24. fi
  25. '';
  26. } // attrs);
  27. extra-treesitter-textobjects = writeTextFile {
  28. name = "extra-treesitter-textobjects";
  29. destination = "/queries/ecma/textobjects.scm";
  30. text = ''
  31. ;; extends
  32. ; consider array elements as @parameter text objects too
  33. (array
  34. "," @_start .
  35. (_) @parameter.inner
  36. (#make-range! "parameter.outer" @_start @parameter.inner))
  37. (array
  38. . (_) @parameter.inner
  39. . ","? @_end
  40. (#make-range! "parameter.outer" @parameter.inner @_end))
  41. '';
  42. };
  43. tsc = writeShellScriptBin "tsc" ''
  44. if [ -x "./node_modules/.bin/tsc" ]; then
  45. exec ./node_modules/.bin/tsc "$@"
  46. else
  47. exec ${node-lsp}/lib/node_modules/node-lsp/node_modules/.bin/tsc "$@"
  48. fi
  49. '';
  50. extraPath = [
  51. fd
  52. ripgrep
  53. html-tidy
  54. node-lsp
  55. tsc
  56. ];
  57. nixpkgsPlugins =
  58. let
  59. # we take nvim-treesitter from nixpkgs as the plugin and grammar versions
  60. # must match exactly
  61. nvim-treesitter = (vimPlugins.nvim-treesitter.withPlugins (p: with p; [
  62. tree-sitter-bash
  63. tree-sitter-css
  64. tree-sitter-elvish
  65. tree-sitter-http
  66. tree-sitter-go
  67. tree-sitter-javascript
  68. tree-sitter-json
  69. tree-sitter-lua
  70. tree-sitter-markdown
  71. tree-sitter-nix
  72. tree-sitter-ruby
  73. tree-sitter-tsx
  74. tree-sitter-typescript
  75. ] ++ lib.optionals withPlayground [
  76. tree-sitter-query
  77. ]));
  78. in
  79. [ nvim-treesitter ] ++ nvim-treesitter.dependencies
  80. ++ (lib.optionals withPlayground [
  81. vimPlugins.playground
  82. ])
  83. ++ (lib.optionals withLuadev [
  84. vimPlugins.nvim-luadev
  85. ]);
  86. pinnedPlugins = import ./plugins {
  87. inherit buildNeovimPlugin fetchFromGitHub fetchpatch;
  88. };
  89. plugins = (lib.attrValues pinnedPlugins)
  90. ++ nixpkgsPlugins
  91. ++ [
  92. extra-treesitter-textobjects
  93. ];
  94. generic = { initText ? "", enabledPlugins ? [], passthru ? {} }: stdenv.mkDerivation {
  95. pname = "nvim";
  96. version = neovim-unwrapped.version;
  97. initVim = ''
  98. let g:loaded_python3_provider = 0
  99. let g:loaded_ruby_provider = 0
  100. let g:loaded_node_provider = 0
  101. let g:loaded_perl_provider = 0
  102. set runtimepath^=${placeholder "out"}/lib
  103. set packpath^=${placeholder "out"}/lib
  104. ${initText}
  105. '';
  106. passAsFile = [ "initVim" ];
  107. nativeBuildInputs = [ makeWrapper ];
  108. unpackPhase = ":";
  109. buildPhase = ''
  110. # build pack / runtime dir
  111. mkdir -p lib/pack/nixpkgs/start
  112. ${lib.concatMapStringsSep "\n" (p: ''
  113. ln -s "${p}" "lib/pack/nixpkgs/start/${lib.getName p}"
  114. '') enabledPlugins}
  115. # create config file
  116. mkdir etc
  117. cp "$initVimPath" etc/init.vim
  118. # symlink in man pages
  119. mkdir -p share
  120. ln -s ${neovim-unwrapped}/share/man share/man
  121. # make bin
  122. mkdir bin
  123. makeWrapper ${neovim-unwrapped}/bin/nvim bin/nvim \
  124. --prefix PATH : ${lib.makeBinPath extraPath} \
  125. --add-flags -u \
  126. --add-flags $out/etc/init.vim
  127. '';
  128. inherit passthru;
  129. installPhase = ''
  130. mkdir $out
  131. cp -r * $out
  132. '';
  133. };
  134. in
  135. generic {
  136. initText = ''
  137. source ${./settings.lua}
  138. source ${./plugins.lua}
  139. source ${./mappings.lua}
  140. source ${./autocmd.lua}
  141. source ${./lsp.lua}
  142. source ${./make.lua}
  143. source ${./theme.lua}
  144. '' + lib.optionalString withPlayground ''
  145. source ${./playground.lua}
  146. '' + lib.optionalString withLuadev ''
  147. source ${./luadev.lua}
  148. '';
  149. enabledPlugins = plugins;
  150. passthru = {
  151. minimal = generic {};
  152. };
  153. }