From 86e8c713ee15cf310607b95c097f21c1edbde469 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Tue, 25 Jun 2024 22:48:48 +0200 Subject: [PATCH] aliases and EDITOR (once more) --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) 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" }