dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit ba1143574a6ac28cbbb47a1e7961d6bb1c1c29ae
parent c9c59a502e330dddfc39bac24af6b929531fe1ef
Author: finwo <finwo@pm.me>
Date:   Mon, 21 Mar 2022 12:00:05 +0100

Chose nano over ed as fallback editor

Diffstat:
Mzsh/home/.zshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -49,7 +49,7 @@ alias ls="ls --color=always" alias ll="ls -lsa" # $EDITOR -command -v ed &>/dev/null && export EDITOR=ed +command -v nano &>/dev/null && export EDITOR=nano command -v vi &>/dev/null && export EDITOR=vi command -v vim &>/dev/null && export EDITOR=vim command -v nvim &>/dev/null && export EDITOR=nvim