My Nix Configuration
2
fork

Configure Feed

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

at dde1eb55cfd2f7b39bcd1a22d74c0e529c4e1071 15 lines 263 B view raw
1{ pkgs, ... }: 2{ 3 config.vim = { 4 treesitter.grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [ 5 git_config 6 git_rebase 7 gitattributes 8 gitcommit 9 gitignore 10 ]; 11 git = { 12 gitsigns.enable = true; 13 }; 14 }; 15}