Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

FIX: upstream nvim-paredit, add jj

+5 -1
+4
noah-home.nix
··· 120 120 extraPackages = with pkgs; [ unstable.fzf unstable.ripgrep luarocks unstable.tree-sitter ]; 121 121 }; 122 122 programs.helix.enable = true; 123 + programs.jujutsu = { 124 + enable = true; 125 + }; 123 126 programs.git = { 124 127 enable = true; 125 128 userName = "Noah Pederson"; ··· 140 143 credential = { 141 144 helper = "cache"; 142 145 }; 146 + rerere.enable = true; 143 147 }; 144 148 ignores = [ 145 149 ".direnv/"
+1 -1
nvim/lua/plugins.lua
··· 244 244 }, -- )))))) 245 245 -- This one gives me vim-sexp like structural editing 246 246 { 247 - "chiefnoah/nvim-paredit", 247 + "julienvincent/nvim-paredit", 248 248 opts = { 249 249 indent = { 250 250 enabled = true,