My Zsh config
Go to file
Kolan Sh 68f9e10d9e local*.sh added 2019-06-17 12:11:01 +03:00
README local*.sh added 2019-06-17 12:11:01 +03:00
aliases.sh alsamixer alias updated. 2015-03-23 13:42:58 +03:00
bindings.sh Initial commit 2012-05-18 13:09:58 +04:00
const.sh local*.sh added 2019-06-17 12:11:01 +03:00
extensions.sh Extensions: firefox and firefox-bin choices. 2013-04-15 12:25:19 +04:00
functions.sh grep /proc/cpuinfo -> getconf _NPROCESSORS_ONLN 2013-01-10 13:47:30 +04:00
main.sh Fucking autocorrection disabled. 2017-06-17 09:42:34 +03:00
prompt.sh local*.sh added 2019-06-17 12:11:01 +03:00
title.sh Initial commit 2012-05-18 13:09:58 +04:00
user.sh Email updated. 2014-01-17 13:53:26 +04:00

README

# Create ~/.zshrc file with contents below.

#!/bin/zsh
# ~/.zshrc

ZDOTDIR=~/.zsh

[ -x $ZDOTDIR/const.sh ] && source $ZDOTDIR/const.sh
[ -x $ZDOTDIR/local_const.sh ] && source $ZDOTDIR/local_const.sh
for rc in $ZDOTDIR/*.sh
do
    [ -x $rc ] && source $rc 
done
unset rc

[ -x $ZDOTDIR/local.sh ] && source $ZDOTDIR/local.sh

unset ZDOTDIR