My Zsh config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kolan Sh 59c8d686b2
Alises "x", "xt" without nohup.
3 years ago
README local*.sh added 4 years ago
alias.sh Alises "x", "xt" without nohup. 3 years ago
bindings.sh Initial commit 11 years ago
const.sh prompt updated 4 years ago
extensions.sh Extensions: firefox and firefox-bin choices. 10 years ago
functions.sh Fucking shit... rcd()... 4 years ago
main.sh Fucking autocorrection disabled. 6 years ago
prompt.sh prompt updated 4 years ago
title.sh Initial commit 11 years ago
user.sh Email updated. 9 years ago

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