neovim.nix 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. { lib
  2. , stdenv
  3. , writeTextFile
  4. , neovim
  5. , fd
  6. , ripgrep
  7. , nodePackages
  8. , vimPlugins
  9. , vimUtils
  10. , fetchFromGitHub
  11. , withPlayground ? false
  12. }:
  13. let
  14. plugins = import ./plugins.nix { inherit stdenv fetchFromGitHub; };
  15. extra-treesitter-textobjects = writeTextFile {
  16. name = "extra-treesitter-textobjects";
  17. destination = "/after/queries/javascript/textobjects.scm";
  18. text = ''
  19. ; support swapping elements inside arrays too
  20. (array "," . (_) @parameter.inner)
  21. (array . (_) @parameter.inner ",")
  22. '';
  23. };
  24. extraPath = [
  25. fd
  26. ripgrep
  27. nodePackages.typescript-language-server
  28. nodePackages.eslint_d
  29. ];
  30. in
  31. neovim.override {
  32. extraMakeWrapperArgs = "--prefix PATH : ${lib.makeBinPath extraPath}";
  33. configure = {
  34. customRC = ''
  35. source ${./settings.lua}
  36. source ${./plugins.lua}
  37. source ${./mappings.lua}
  38. source ${./autocmd.lua}
  39. source ${./lsp.lua}
  40. source ${./theme.lua}
  41. '' + lib.optionalString withPlayground ''
  42. source ${./playground.lua}
  43. '';
  44. packages.myVimPackage = with vimPlugins; {
  45. start = plugins ++ [
  46. (nvim-treesitter.withPlugins (p: with p; [
  47. tree-sitter-bash
  48. tree-sitter-css
  49. tree-sitter-go
  50. tree-sitter-javascript
  51. tree-sitter-json
  52. tree-sitter-lua
  53. tree-sitter-nix
  54. tree-sitter-ruby
  55. tree-sitter-tsx
  56. tree-sitter-typescript
  57. ] ++ lib.optionals withPlayground [
  58. tree-sitter-query
  59. ]))
  60. extra-treesitter-textobjects
  61. ] ++ lib.optionals withPlayground [
  62. playground
  63. ];
  64. };
  65. };
  66. }