summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-09-13 00:16:44 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-09-13 00:16:44 +0200
commit5dac575c67b38266ad12b31be4e7a1db02de80b5 (patch)
tree883864b58c919190288cb914e7dd21b0e4c4cf1a /.zshrc
parentff82923a419f82304861906f36c223d4a782bdda (diff)
downloaddotfiles-5dac575c67b38266ad12b31be4e7a1db02de80b5.tar.gz
dotfiles-5dac575c67b38266ad12b31be4e7a1db02de80b5.tar.xz
zshrc: fix history locking issues; new alias
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc7
1 files changed, 5 insertions, 2 deletions
diff --git a/.zshrc b/.zshrc
index fbfed11..e0b8146 100644
--- a/.zshrc
+++ b/.zshrc
@@ -384,7 +384,7 @@ setopt print_exit_value
# work saved ;)
setopt no_clobber
-setopt inc_append_history
+#setopt inc_append_history
setopt no_bg_nice
setopt share_history
#setopt bang_hist
@@ -392,9 +392,10 @@ setopt extended_history
#setopt hist_reduce_blanks
setopt hist_ignore_space
setopt hist_find_no_dups
+setopt hist_ignore_dups
setopt nohistverify
setopt prompt_subst
-setopt hist_fcntl_lock
+#setopt hist_fcntl_lock
setopt always_to_end
unsetopt auto_remove_slash
@@ -478,6 +479,8 @@ alias ssh-copy-id="ssh-copy-id -o ControlPath=none"
alias callgrind='valgrind --tool=callgrind'
alias vgfull='valgrind --leak-check=full --show-reachable=yes'
+alias is="iostat -Nyxm 2"
+
# other random aliases
alias ☠='pkill -9'
alias nocomment='egrep -v "^\s*(#|$)"'