neovim.nix 3.1 KB

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