added exclude packages script

This commit is contained in:
2023-08-10 14:37:56 +02:00
parent f8952ca848
commit 0bf823d72e
4 changed files with 49 additions and 4 deletions
+6 -3
View File
@@ -32,9 +32,6 @@ if [ -d $HOME/.local/bin ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# add the custom functions from the .custom_functions file
custom_func_dir=$HOME/.scripts
for f in $custom_func_dir/*; do source $f; done
# key bindings
# create a zkbd compatible hash;
@@ -151,3 +148,9 @@ bindkey '5C' forward-word
bindkey '^[[3~' delete-char
powerline-config tmux setup
alias vim=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