From 1248d15d0ce40e1a8181b63c1a5cfb371e38dc06 Mon Sep 17 00:00:00 2001 From: Marcus Crane Date: Sat, 16 Dec 2023 18:54:45 +1300 Subject: [PATCH] Default editor to nvim Signed-off-by: Marcus Crane --- zshrc.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zshrc.md b/zshrc.md index c839e6c..dfed1ac 100644 --- a/zshrc.md +++ b/zshrc.md @@ -166,7 +166,7 @@ export WORKSPACE="$HOME/Code" ```bash export CONFIG_FILE="$HOME/.zshrc" export CONFIG_SRC="$(chezmoi source-path)/zshrc.md" -export EDITOR="lvim" +export EDITOR="nvim" export GPG_TTY=$(tty) export LANGUAGE="en_NZ:en" export LAST_MODIFIED="$(date)" @@ -334,6 +334,7 @@ alias gst="git status" alias ipv4="dig @resolver4.opendns.com myip.opendns.com +short -4" alias ipv6="dig @resolver1.ipv6-sandbox.opendns.com AAAA myip.opendns.com +short -6" alias lidclosed="ioreg -r -k AppleClamshellState -d 4 | grep AppleClamshellState | awk '{ print $4 }'" +alias lvim="nvim" alias rebrew="brew bundle --file=$(chezmoi source-path)/Brewfile" alias refresh="chezmoi git pull && chezmoi apply && source $CONFIG_FILE && echo '~ refreshed shell config'" alias rmuntracked="git status -su --no-ahead-behind | awk '{ print $2 }' | xargs rm"