123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- { lib
- , stdenv
- , writeTextFile
- , neovim
- , fd
- , ripgrep
- , nodePackages
- , vimPlugins
- , vimUtils
- , fetchFromGitHub
- , withPlayground ? false
- }:
- let
- plugins = import ./plugins.nix { inherit stdenv fetchFromGitHub; };
- extra-treesitter-textobjects = writeTextFile {
- name = "extra-treesitter-textobjects";
- destination = "/after/queries/javascript/textobjects.scm";
- text = ''
- ; support swapping elements inside arrays too
- (array "," . (_) @parameter.inner)
- (array . (_) @parameter.inner ",")
- '';
- };
- extraPath = [
- fd
- ripgrep
- nodePackages.typescript-language-server
- nodePackages.eslint_d
- ];
- in
- neovim.override {
- extraMakeWrapperArgs = "--prefix PATH : ${lib.makeBinPath extraPath}";
- configure = {
- customRC = ''
- source ${./settings.lua}
- source ${./plugins.lua}
- source ${./mappings.lua}
- source ${./autocmd.lua}
- source ${./lsp.lua}
- source ${./theme.lua}
- '' + lib.optionalString withPlayground ''
- source ${./playground.lua}
- '';
- packages.myVimPackage = with vimPlugins; {
- start = plugins ++ [
- (nvim-treesitter.withPlugins (p: with p; [
- tree-sitter-bash
- tree-sitter-css
- tree-sitter-go
- tree-sitter-javascript
- tree-sitter-json
- tree-sitter-lua
- tree-sitter-nix
- tree-sitter-ruby
- tree-sitter-tsx
- tree-sitter-typescript
- ] ++ lib.optionals withPlayground [
- tree-sitter-query
- ]))
- extra-treesitter-textobjects
- ] ++ lib.optionals withPlayground [
- playground
- ];
- };
- };
- }
|