1
0
Fork 0
My Zsh config
Datei suchen
Шашкин Николай 0ab8b55d66 up xcursor size/theme 2024-02-21 20:12:33 +03:00
README local*.sh added 2019-06-17 12:11:01 +03:00
alias.sh ssh-copy-id-nocheck alias added 2023-09-19 00:30:34 +03:00
bindings.sh Initial commit 2012-05-18 13:09:58 +04:00
const.sh up xcursor size/theme 2024-02-21 20:12:33 +03:00
extensions.sh Extensions: firefox and firefox-bin choices. 2013-04-15 12:25:19 +04:00
functions.sh Fucking shit... rcd()... 2019-09-06 15:09:45 +03:00
main.sh Fucking autocorrection disabled. 2017-06-17 09:42:34 +03:00
prompt.sh prompt updated 2019-06-17 13:08:15 +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