this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Manage TreeSitter plugins in Nix

+22 -5
+22 -5
nix/environment.nix
··· 13 13 flaked-nix-direnv 14 14 ]; 15 15 16 + documentation.enable = false; 17 + 16 18 # List packages installed in system profile. To search by name, run: 17 19 # $ nix search nixpkgs wget 18 20 environment.systemPackages = with pkgs; let ··· 25 27 rg -l -t "$1" "" | entr -p echo /_ 26 28 ''; 27 29 }; 30 + nvim = neovim.override { 31 + configure = { 32 + customRC = '' 33 + lua require('basic') 34 + ''; 35 + packages.vimPackages = with pkgs.vimPlugins; { 36 + start = [ 37 + packer-nvim 38 + (nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars)) 39 + ]; 40 + 41 + opt = []; 42 + }; 43 + }; 44 + }; 28 45 in [ 29 46 _1password 30 47 age ··· 32 49 bat 33 50 comby 34 51 coreutils 35 - curlie 52 + # curlie 36 53 difftastic 37 54 direnv 38 55 entr ··· 40 57 fishPlugins.agnoster 41 58 fswatch 42 59 fzy 43 - git-branchless 44 60 git-gone 45 61 git-lfs 46 62 git-revise ··· 59 75 jq 60 76 lnav 61 77 lima 62 - neovim 78 + nvim 63 79 neovim-remote 64 80 noti 65 81 pinentry_mac 66 - qmk 82 + # qmk 67 83 ripgrep 68 84 universal-ctags 69 85 # w3m ··· 71 87 weechat 72 88 ]; 73 89 74 - environment.shells = [pkgs.fish]; 90 + environment.shells = [pkgs.fish pkgs.zsh]; 75 91 76 92 environment.variables = { 77 93 EDITOR = "nvim"; ··· 79 95 ERL_FLAGS = "-kernel shell_history enabled"; 80 96 }; 81 97 98 + programs.zsh.enable = true; 82 99 programs.fish = { 83 100 enable = true; 84 101