neovim.nix 3.5 KB

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