Passati a gestione plugin con antigen. Creata cartella con configurazioni locali.

This commit is contained in:
Emiliano Vavassori 2023-12-29 17:50:43 +01:00
parent 567ee7f3c5
commit 2fabee5321
17 changed files with 34 additions and 1590 deletions

22
zshrc
View file

@ -23,6 +23,24 @@ for plugin in `find $DOTFILES/zsh/plugins -iname \*.plugin.zsh -print`; do
fi
done
# Antigen configuration
# the main pluing should have been sourced in the previous loop.
antigen bundle <<BUNDLES
command-not-found
common-aliases
copyfile
fzf
git
pip
python
rsync
sudo
systemadmin
systemd
z
BUNDLES
antigen apply
# EDITOR
export EDITOR="/usr/bin/vim"
export ZSH_TMUX_CONFIG=${HOME}/.config/tmux/tmux.conf
@ -37,3 +55,7 @@ export ZSH_TMUX_CONFIG=${HOME}/.config/tmux/tmux.conf
for file in `find $DOTFILES/zsh/aliases -iname \*.aliases.zsh -print`; do
source $file
done
for file in `find $DOTFILES/zsh/localconf.d -type f -iname \*.conf -print`; do
source file
done