diff --git a/.zshrc b/.zshrc index 6de1aa6..f125b90 100644 --- a/.zshrc +++ b/.zshrc @@ -11,6 +11,8 @@ export CLIPBOARD_NOGUI=0 # wayland only allows GUI apps to use the clipboard. # For wayland, set this to `1` # see https://github.com/Slackadays/Clipboard/issues/171 export DATEFMT='+%a %Y-%m-%d %X' +export EDITOR=nvim +export VISUAL=nvim ### Aliases @@ -39,6 +41,7 @@ alias open=xdg-open alias ipb="ip -brief" alias psa="ps -eadf" alias fsize="stat --printf='%s'" +alias rg="rg --no-ignore" ### Functions function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }