parent
c23a80df61
commit
85ea42768e
@ -0,0 +1,6 @@ |
|||||||
|
mkdir -p ~/.backup |
||||||
|
ln -snf `pwd`/vimrc ~/.vimrc |
||||||
|
ln -snf `pwd`/tmux.server.conf ~/.tmux.conf |
||||||
|
ln -snf `pwd`/zshrc.local ~/.zshrc.local |
||||||
|
ln -snf `pwd`/zshrc ~/.zshrc |
||||||
|
ln -snf `pwd`/gitconfig ~/.gitconfig |
@ -0,0 +1,79 @@ |
|||||||
|
# ncurses not polluting scroll history |
||||||
|
set -g alternate-screen on |
||||||
|
# dont respect smaller windows |
||||||
|
setw -g aggressive-resize on |
||||||
|
|
||||||
|
# command prefix |
||||||
|
unbind C-b |
||||||
|
set -g prefix C-w |
||||||
|
bind w send-prefix |
||||||
|
bind-key C-w last-window |
||||||
|
|
||||||
|
# basic settings |
||||||
|
set -g history-limit 30000 |
||||||
|
set-option -g default-shell /usr/bin/zsh |
||||||
|
set-window-option -g utf8 on |
||||||
|
set -g base-index 1 |
||||||
|
|
||||||
|
# vi mode |
||||||
|
set-window-option -g mode-keys vi |
||||||
|
bind-key -t vi-copy 'v' begin-selection |
||||||
|
bind-key -t vi-copy 'y' copy-selection |
||||||
|
|
||||||
|
# escape mode |
||||||
|
unbind [ |
||||||
|
bind Escape copy-mode |
||||||
|
set -s escape-time 0 |
||||||
|
|
||||||
|
# switch windows |
||||||
|
bind -r j previous-window |
||||||
|
bind -r k next-window |
||||||
|
bind -r h swap-window -t -1 |
||||||
|
bind -r l swap-window -t +1 |
||||||
|
|
||||||
|
# fixes redraw bugs |
||||||
|
set -g default-terminal screen-256color |
||||||
|
|
||||||
|
# splitting |
||||||
|
unbind % |
||||||
|
unbind '"' |
||||||
|
bind = split-window -h |
||||||
|
bind - split-window -v |
||||||
|
bind -r C-h run "tmux select-pane -L" |
||||||
|
bind -r C-j run "tmux select-pane -D" |
||||||
|
bind -r C-k run "tmux select-pane -U" |
||||||
|
bind -r C-l run "tmux select-pane -R" |
||||||
|
bind [ resize-pane -L 5 |
||||||
|
bind ] resize-pane -R 5 |
||||||
|
bind < resize-pane -D 5 |
||||||
|
bind > resize-pane -U 5 |
||||||
|
bind-key b command-prompt -p "create pane from:" "join-pane -s ':%%'" |
||||||
|
bind-key v command-prompt -p "send pane to:" "join-pane -t ':%%'" |
||||||
|
|
||||||
|
# window title |
||||||
|
set-option -g set-titles on |
||||||
|
set-option -g set-titles-string '[#H]: #W' |
||||||
|
set-window-option -g automatic-rename on |
||||||
|
|
||||||
|
# no visual activity |
||||||
|
setw -g monitor-activity off |
||||||
|
set -g visual-activity on |
||||||
|
set -g visual-bell off |
||||||
|
|
||||||
|
# status bar |
||||||
|
bind-key z set -g status |
||||||
|
set-option -g status-utf8 on |
||||||
|
set-option -g status-justify left |
||||||
|
set-option -g status-bg black |
||||||
|
set-option -g status-fg cyan |
||||||
|
set-option -g status-interval 5 |
||||||
|
set-option -g status-left-length 0 |
||||||
|
set-option -g status-right-length 80 |
||||||
|
set-option -g status-left '' |
||||||
|
set-option -g status-right '#[fg=blue,bold]#H #[fg=green,bold]|#[fg=black,bold]#(uptime | rev | cut -d":" -f1 | rev | sed s/,//g ) #[fg=green,bold]| #[fg=blue,bold]%d.%m.%y %H:%M' |
||||||
|
set-window-option -g window-status-current-fg black |
||||||
|
set-window-option -g window-status-current-bg green |
||||||
|
|
||||||
|
# clock |
||||||
|
set-window-option -g clock-mode-colour cyan |
||||||
|
set-window-option -g clock-mode-style 24 |
Loading…
Reference in new issue