all repos — dotfiles-base @ main

base important configs that can safely be used almost anywhere

.config/fish/functions/ll.fish

 1
 2
 3
 4
function ll --wraps='ls -lh --color=auto ' --description 'alias ll=ls -lh --color=auto '
  ls -lh --color=auto  $argv
        
end