mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
exa over color-ls
This commit is contained in:
parent
389615df11
commit
bf412d1976
2 changed files with 10 additions and 6 deletions
|
|
@ -193,8 +193,10 @@ There are a few things that can make things even better
|
|||
* if tmux is installed install tmux config [Oh My Tmux](https://github.com/gpakosz/.tmux)
|
||||
* install vim config [SpaceVim](https://spacevim.org/)
|
||||
* install Mosh replacement [Eternal Terminal](https://eternalterminal.dev/)
|
||||
* install colorls
|
||||
* optionally install colorls
|
||||
* `sudo gem install colorls`
|
||||
* optionally install file transer app
|
||||
* `curl -sL https://cutt.ly/tran-cli | bash`
|
||||
* on macOS
|
||||
* install macVIM via `brew install macvim`
|
||||
* if you don't like Gruv Box, you may want to install some colour themes for iTerm2
|
||||
|
|
|
|||
|
|
@ -194,13 +194,15 @@ export MANPATH="/usr/local/man:/usr/local/ssl/share/man:$MANPATH"
|
|||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
alias gnb='git nb' # new branch aka checkout -b
|
||||
alias gdtl='git difftool --no-prompt'
|
||||
if [ -x "$(command -v colorls)" ]; then
|
||||
alias ls="colorls"
|
||||
alias la="colorls -al"
|
||||
fi
|
||||
if [ -x "$(command -v colorls)" ]; then
|
||||
|
||||
if [ -x "$(command -v exa)" ]; then
|
||||
alias ls="exa"
|
||||
alias la="exa --long --all --group"
|
||||
else
|
||||
if [ -x "$(command -v colorls)" ]; then
|
||||
alias ls="colorls"
|
||||
alias la="colorls -al"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Other custom config
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue