diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-20T22·05+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-20T22·05+0200 |
commit | e86392b55a28e3aa8321c6026e35f3d84d909eaa (patch) | |
tree | 42470d0ce58915090a3e0d503971375c3732284e /dotfiles/config.fish | |
parent | d7ae1b70d3d52b3432e3b927ee99af6ef246f87f (diff) |
feat(dotfiles/fish): Alias ls to exa
Old habits die hard, but I really want more Rust in my userland.
Diffstat (limited to 'dotfiles/config.fish')
-rw-r--r-- | dotfiles/config.fish | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dotfiles/config.fish b/dotfiles/config.fish index a6c611f7059f..3d6d59845538 100644 --- a/dotfiles/config.fish +++ b/dotfiles/config.fish @@ -21,3 +21,6 @@ alias gf 'git fetch' alias gap 'git add -p' alias pbcopy 'xclip -selection clipboard' alias edit 'emacsclient -n' + +# Old habits die hard (also ls is just easier to type): +alias ls 'exa' |