Compare commits

...

2 commits

Author SHA1 Message Date
3e63dd2f99 fix atuin conditional 2022-09-22 10:22:16 -05:00
da523ace05 force color on lsl 2022-09-22 10:21:59 -05:00
2 changed files with 2 additions and 5 deletions

View file

@ -15,7 +15,7 @@ alias la="ls -a"
alias ll="ls -lhA"
alias lr='ls -R'
alias lla="ls -la"
alias lsl="ls -lhFA | less"
alias lsl="ls -lhFA --color=always | less"
alias left='ls -t -1'
if is-executable lsd; then

View file

@ -31,7 +31,4 @@ zstyle ':completion::complete:make:*:targets' call-command true
is-executable fzf && source $DOTFILES_DIR/lib/fzf.zsh
# atuin must be loaded after to override zsh's ctrl+R completion
if [[ $(is-executable atuin) && ! $(is-tty) ]]; then
is-executable atuin && eval "$(atuin init zsh)"
fi
is-executable atuin && is-tty || eval "$(atuin init zsh)"