27 lines
648 B
Bash
27 lines
648 B
Bash
|
# 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
|