all repos — dotfiles-base @ 0cc564558f6e3d7f8f6139f4c715085a47dd124d

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