Introduction of Zed editor.

This commit is contained in:
Bartek Stalewski 2024-08-13 12:54:31 +02:00
parent 0b7446cafa
commit eee5515324
No known key found for this signature in database
3 changed files with 78 additions and 0 deletions

View file

@ -44,6 +44,10 @@ elif [ $(command -v vim) ] ; then
else
export EDITOR=vi
fi
if [ $(command -v zed) ]; then
export EDITOR="zed -w"
alias vim=zed
fi
if [[ $(command -v rg) ]]; then
alias grep='rg -i'