Merge branch 'main' of gitlab.com:blankinator/dotfiles

This commit is contained in:
2023-10-30 10:46:30 +01:00
+4
View File
@@ -152,6 +152,10 @@ bindkey '^[[3~' delete-char
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