all repos — dotfiles-base @ 4143f443190bce542a389f280c2dd6d5b328560c

base important configs that can safely be used almost anywhere

.config/fish/functions/rot13.fish

 1
 2
 3
 4
function rot13 --wraps=tr\ \'A-Za-z\'\ \'N-ZA-Mn-za-m\'\  --description alias\ rot13=tr\ \'A-Za-z\'\ \'N-ZA-Mn-za-m\'\ 
  tr 'A-Za-z' 'N-ZA-Mn-za-m'  $argv
        
end