neovim.nix 3.0 KB

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