zshrc/zshrc

50 lines
1.3 KiB
Bash
Raw Normal View History

2010-12-05 16:57:06 +01:00
# @author Sebastian Tramp <mail@sebastian.tramp.name>
# @license http://opensource.org/licenses/gpl-license.php
#
# the main RC file (will be linked to ~/.zshrc)
#
2012-08-23 11:08:03 +02:00
# first include of the environment
source $HOME/.config/zsh/environment.zsh
typeset -ga sources
2012-08-23 11:08:03 +02:00
sources+="$ZSH_CONFIG/environment.zsh"
sources+="$ZSH_CONFIG/options.zsh"
sources+="$ZSH_CONFIG/prompt.zsh"
sources+="$ZSH_CONFIG/functions.zsh"
sources+="$ZSH_CONFIG/aliases.zsh"
2011-01-03 11:38:47 +01:00
# highlights the live command line
# Cloned From: git://github.com/nicoulaj/zsh-syntax-highlighting.git
sources+="$ZSH_CONFIG/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
2011-01-03 11:38:47 +01:00
# provides the package name of a non existing executable
# (sudo apt-get install command-not-found)
sources+="/etc/zsh_command_not_found"
2011-02-07 17:18:41 +01:00
# Check for a system specific file
systemFile=`uname -s | tr "[:upper:]" "[:lower:]"`
sources+="$ZSH_CONFIG/$systemFile.zsh"
2011-02-07 17:18:41 +01:00
2012-08-23 11:08:03 +02:00
# Private aliases and adoptions
sources+="$ZSH_CONFIG/private.zsh"
2011-02-07 17:18:41 +01:00
2012-08-23 11:08:03 +02:00
# completion config needs to be after system and private config
sources+="$ZSH_CONFIG/completion.zsh"
2012-08-22 15:21:22 +02:00
2013-06-14 01:41:32 +02:00
# fasd integration and config
sources+="$ZSH_CONFIG/fasd.zsh"
2012-08-28 10:33:45 +02:00
# Private aliases and adoptions added at the very end (e.g. to start byuobu)
sources+="$ZSH_CONFIG/private.final.zsh"
2013-06-14 01:41:32 +02:00
# try to include all sources
foreach file (`echo $sources`)
if [[ -a $file ]]; then
source $file
fi
end
2010-12-25 20:12:51 +01:00