neovim.nix 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. extra-tsc-compiler = writeTextFile {
  33. name = "extra-tsc-compiler";
  34. destination = "/after/compiler/tsc.vim";
  35. text = ''
  36. CompilerSet makeprg=node_modules/.bin/tsc\ --incremental\ --noEmit
  37. '';
  38. };
  39. extraPath = [
  40. fd
  41. ripgrep
  42. node-lsp
  43. ];
  44. nixpkgsPlugins =
  45. let
  46. # we take nvim-treesitter from nixpkgs as the plugin and grammar versions
  47. # must match exactly
  48. nvim-treesitter = (vimPlugins.nvim-treesitter.withPlugins (p: with p; [
  49. tree-sitter-bash
  50. tree-sitter-css
  51. tree-sitter-elvish
  52. tree-sitter-go
  53. tree-sitter-javascript
  54. tree-sitter-json
  55. tree-sitter-lua
  56. tree-sitter-nix
  57. tree-sitter-ruby
  58. tree-sitter-tsx
  59. tree-sitter-typescript
  60. ] ++ lib.optionals withPlayground [
  61. tree-sitter-query
  62. ]));
  63. in
  64. [ nvim-treesitter ] ++ nvim-treesitter.dependencies ++ lib.optionals withPlayground [
  65. vimPlugins.playground
  66. ];
  67. pinnedPlugins = import ./plugins {
  68. inherit buildNeovimPlugin fetchFromGitHub;
  69. };
  70. plugins = (lib.attrValues pinnedPlugins)
  71. ++ nixpkgsPlugins
  72. ++ [
  73. extra-treesitter-textobjects
  74. extra-tsc-compiler
  75. ];
  76. in
  77. stdenv.mkDerivation {
  78. pname = "nvim";
  79. version = neovim-unwrapped.version;
  80. initVim = ''
  81. let g:loaded_python3_provider = 0
  82. let g:loaded_ruby_provider = 0
  83. let g:loaded_node_provider = 0
  84. let g:loaded_perl_provider = 0
  85. set runtimepath^=${placeholder "out"}/lib
  86. set packpath^=${placeholder "out"}/lib
  87. source ${./settings.lua}
  88. source ${./plugins.lua}
  89. source ${./mappings.lua}
  90. source ${./autocmd.lua}
  91. source ${./lsp.lua}
  92. source ${./theme.lua}
  93. '' + lib.optionalString withPlayground ''
  94. source ${./playground.lua}
  95. '';
  96. passAsFile = [ "initVim" ];
  97. nativeBuildInputs = [ makeWrapper ];
  98. unpackPhase = ":";
  99. buildPhase = ''
  100. # build pack / runtime dir
  101. mkdir -p lib/pack/nixpkgs/start
  102. ${lib.concatMapStringsSep "\n" (p: ''
  103. ln -s "${p}" "lib/pack/nixpkgs/start/${lib.getName p}"
  104. '') plugins}
  105. # create config file
  106. mkdir etc
  107. cp "$initVimPath" etc/init.vim
  108. # symlink in man pages
  109. mkdir -p share
  110. ln -s ${neovim-unwrapped}/share/man share/man
  111. # make bin
  112. mkdir bin
  113. makeWrapper ${neovim-unwrapped}/bin/nvim bin/nvim \
  114. --prefix PATH : ${lib.makeBinPath extraPath} \
  115. --add-flags -u \
  116. --add-flags $out/etc/init.vim
  117. '';
  118. installPhase = ''
  119. mkdir $out
  120. cp -r * $out
  121. '';
  122. }