stop using debian package, add loop function
This commit is contained in:
parent
1651a2e65b
commit
e2eefa4328
2 changed files with 3 additions and 1 deletions
|
|
@ -30,6 +30,7 @@ alias open_ports="sudo netstat -tulpen 2> /dev/null | grep LISTEN"
|
||||||
cless() {for a in $@; do colorize_via_pygmentize $a | less; done}
|
cless() {for a in $@; do colorize_via_pygmentize $a | less; done}
|
||||||
r() {if [ $# -eq 1 ]; then ssh root@$1; else sudo su -; fi}
|
r() {if [ $# -eq 1 ]; then ssh root@$1; else sudo su -; fi}
|
||||||
health() {/usr/bin/screen -O -S health -c ~/.config/screen_health}
|
health() {/usr/bin/screen -O -S health -c ~/.config/screen_health}
|
||||||
|
loop() {while [ 1 ]; do $@; done}
|
||||||
|
|
||||||
# Some exports
|
# Some exports
|
||||||
export EDITOR=emacsclient
|
export EDITOR=emacsclient
|
||||||
|
|
|
||||||
3
zshrc
3
zshrc
|
|
@ -1,7 +1,8 @@
|
||||||
source /usr/share/zsh-antigen/antigen.zsh
|
source /home/hybris/.antigen/antigen/antigen.zsh
|
||||||
|
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
|
|
||||||
|
|
||||||
antigen bundles <<EOBUNDLES
|
antigen bundles <<EOBUNDLES
|
||||||
# omz
|
# omz
|
||||||
colored-man-pages
|
colored-man-pages
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue