neovim.nix 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. { lib
  2. , stdenv
  3. , writeTextFile
  4. , neovim
  5. , neovim-unwrapped
  6. , fd
  7. , ripgrep
  8. , nodePackages
  9. , vimPlugins
  10. , vimUtils
  11. , fetchFromGitHub
  12. , withPlayground ? 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. plugins = import ./plugins.nix { inherit buildNeovimPlugin fetchFromGitHub; };
  25. extra-treesitter-textobjects = writeTextFile {
  26. name = "extra-treesitter-textobjects";
  27. destination = "/after/queries/javascript/textobjects.scm";
  28. text = ''
  29. ; support swapping elements inside arrays too
  30. (array "," . (_) @parameter.inner)
  31. (array . (_) @parameter.inner ",")
  32. '';
  33. };
  34. extra-tsc-compiler = writeTextFile {
  35. name = "extra-tsc-compiler";
  36. destination = "/after/compiler/tsc.vim";
  37. text = ''
  38. CompilerSet makeprg=node_modules/.bin/tsc\ --incremental\ --noEmit
  39. '';
  40. };
  41. extraPath = [
  42. fd
  43. ripgrep
  44. nodePackages.typescript-language-server
  45. nodePackages.eslint_d
  46. ];
  47. in
  48. neovim.override {
  49. extraMakeWrapperArgs = "--prefix PATH : ${lib.makeBinPath extraPath}";
  50. configure = {
  51. customRC = ''
  52. source ${./settings.lua}
  53. source ${./plugins.lua}
  54. source ${./mappings.lua}
  55. source ${./autocmd.lua}
  56. source ${./lsp.lua}
  57. source ${./theme.lua}
  58. '' + lib.optionalString withPlayground ''
  59. source ${./playground.lua}
  60. '';
  61. packages.myVimPackage = with vimPlugins; {
  62. start = plugins ++ [
  63. (nvim-treesitter.withPlugins (p: with p; [
  64. tree-sitter-bash
  65. tree-sitter-css
  66. tree-sitter-go
  67. tree-sitter-javascript
  68. tree-sitter-json
  69. tree-sitter-lua
  70. tree-sitter-nix
  71. tree-sitter-ruby
  72. tree-sitter-tsx
  73. tree-sitter-typescript
  74. ] ++ lib.optionals withPlayground [
  75. tree-sitter-query
  76. ]))
  77. extra-treesitter-textobjects
  78. extra-tsc-compiler
  79. ] ++ lib.optionals withPlayground [
  80. playground
  81. ];
  82. };
  83. };
  84. }