fixed makepass and update tmux conf for tmux 2.1

This commit is contained in:
hellerve
2015-10-27 10:51:14 +01:00
parent a681c3a4ab
commit 1137a1f0fe
3 changed files with 5 additions and 13 deletions

Submodule .vim/bundle/syntastic updated: 710a854f6a...e1217a888a

View File

@@ -9,21 +9,13 @@ set -g status-right '#[default]#[fg=green]#H #[fg=white]%m/%d %I:%M%p #[default]
set-option -g default-command /bin/zsh set-option -g default-command /bin/zsh
set-option -g default-shell /bin/zsh set-option -g default-shell /bin/zsh
set-window-option -g mode-mouse on set-window-option -g mouse on
set-option -g mouse-select-pane on
set-option -g mouse-select-window on
set -g terminal-overrides 'xterm*:smcup@:rmcup@' set -g terminal-overrides 'xterm*:smcup@:rmcup@'
bind m \ bind m \
set -g mode-mouse on \;\ set -g mouse on \;\
set -g mouse-resize-pane on \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display 'Mouse: ON' display 'Mouse: ON'
bind M \ bind M \
set -g mode-mouse off \;\ set -g mouse off \;\
set -g mouse-resize-pane off \;\
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display 'Mouse: OFF' display 'Mouse: OFF'

2
zshrc
View File

@@ -224,7 +224,7 @@ save_dotfiles(){
makepass(){ makepass(){
LEN=20 LEN=20
if [ $# > 0 ] ; then if [ $# > 1 ] ; then
LEN=$1 LEN=$1
fi fi
cat /dev/urandom | base64 | head -c $LEN cat /dev/urandom | base64 | head -c $LEN