Compare commits

..

No commits in common. "3e63dd2f99d2608f6791abd7297db6791bba8ebc" and "a729603d4e3380cbee9d7cf3d3ff896106022d5b" have entirely different histories.

2 changed files with 5 additions and 2 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 --color=always | less"
alias lsl="ls -lhFA | less"
alias left='ls -t -1'
if is-executable lsd; then

View file

@ -31,4 +31,7 @@ zstyle ':completion::complete:make:*:targets' call-command true
is-executable fzf && source $DOTFILES_DIR/lib/fzf.zsh
is-executable atuin && is-tty || eval "$(atuin init 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