some tmux tweaks

osx
Adam Veldhousen 7 years ago
parent e76c43f75e
commit b3a5cc8034
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B

@ -7,7 +7,7 @@ set -o vi # Set prompt to vi mode
set -o notify # Report status of terminated background jobs immediately
# History
HISTCONTROL=ignoredups # No duplicate commands in history
HISTCONTROL=ignoreboth:erasedups # No duplicate commands in history
HISTSIZE=50000 # For a huge history
export HISTIGNORE="[ ]*:&:bg:fg:exit:clear" # Don't save these commands in the history
shopt -s histappend # Append to the history file, not overwrite

1
.gitignore vendored

@ -68,7 +68,6 @@ projects/
# Compiled source #
###################
*.com
*.class
*.dll
*.exe

@ -33,3 +33,5 @@ if [ -d ~/.extensions ]; then
fi
printmotd
export PATH="$HOME/.cargo/bin:$PATH"

@ -12,7 +12,6 @@
set -g default-command "/bin/bash --login"
set -g default-shell "/bin/bash"
run-shell "powerline-daemon -q"
source ~/tools/modules/powerline/powerline/bindings/tmux/powerline.conf
set -g default-terminal "screen-256color"
@ -56,7 +55,11 @@ set-window-option -g clock-mode-style 24
set-window-option -g monitor-activity on
set-window-option -g automatic-rename on
set-window-option -g mouse
set -g pane-active-border-fg green
#set -g pane-active-border-fg green
set -g pane-border-fg white
set -g pane-border-bg white
set -g pane-active-border-fg cyan
set -g pane-active-border-bg cyan
# Window nav
unbind-key 1 ; bind-key 1 select-window -t 1

Loading…
Cancel
Save