Import iniziale, da testare.

This commit is contained in:
Emiliano Vavassori 2021-12-29 19:14:18 +01:00
commit 63363f48bb
20 changed files with 1892 additions and 0 deletions

26
.zshrc Normal file
View file

@ -0,0 +1,26 @@
# vim:sts=2:sw=2:ft=zsh
# Autocompletion
export FPATH=~/.dotfiles/zsh/functions:$FPATH
# Theme
source ~/.dotfiles/zsh/themes/gentoo.zsh.theme
# zsh packages from system
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh-syntax-highlighting/zsh-syntax-hightlighting.zsh
# Plugins
source ~/.dotfiles/zsh/plugins/*.plugin.zsh
# EDITOR
export EDITOR="/usr/bin/vim"
# FZF default options
export FZF_DEFAULT_OPTS="--multi --no-mouse --ansi --color=dark"
# Loading rvm if exists
[ -f /etc/profile.d/rvm.sh ] && source /etc/profile.d/rvm.sh
# Loading additional aliases
source ~/.dotfiles/zsh/aliases/*.aliases.zsh