From 025bbaa62fe8793d534d0da8927a6c51fbb8f8de Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Fri, 13 Oct 2023 11:21:12 +0200 Subject: [PATCH] set editor for cron in zshrc --- .config/picom.conf | 2 +- .zshrc | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/picom.conf b/.config/picom.conf index ede6123..f727a64 120000 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -1 +1 @@ -picom.conf##class.arch_desktop \ No newline at end of file +picom.conf##class.arch_laptop \ No newline at end of file diff --git a/.zshrc b/.zshrc index 2527895..3388aaf 100644 --- a/.zshrc +++ b/.zshrc @@ -152,6 +152,10 @@ powerline-config tmux setup alias vim=nvim alias sudo='sudo ' +# set default editor to neovim +export EDITOR=nvim +export VISUAL=nvim + # add the custom functions from the .custom_functions file custom_func_dir=$HOME/.scripts for f in $custom_func_dir/*; do source $f; done