minor fixes
This commit is contained in:
parent
4e12d3d735
commit
63a100b01e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# bip at command end
|
# bip at command end
|
||||||
function precmd() {echo -n -e "\a"}
|
function precmd() {echo -n -e "\a"}
|
||||||
function preexec() {print -Pn "\e]0;toto\a"}
|
function preexec() {print -Pn "\e]0;\a"}
|
||||||
|
|
||||||
# do not share history between terms...
|
# do not share history between terms...
|
||||||
unsetopt share_history
|
unsetopt share_history
|
||||||
|
|
@ -30,7 +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}
|
loop() {while [ 1 ]; do sh -c "$@"; done}
|
||||||
|
|
||||||
# Some exports
|
# Some exports
|
||||||
export EDITOR=emacsclient
|
export EDITOR=emacsclient
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue