(mirror) personal dotfiles github.com/crescentrose/dotfiles
at main 21 lines 377 B view raw
1{ 2 programs.ripgrep = { 3 enable = true; 4 arguments = [ 5 # limit line length 6 "--max-columns=150" 7 "--max-columns-preview" 8 9 # also show hidden directories and files 10 "--hidden" 11 12 # ignore Git data 13 "--glob=!.git/*" 14 15 "--smart-case" 16 17 # allow clicking on file names to open them 18 "--hyperlink-format=kitty" 19 ]; 20 }; 21}