fdignore, gitignore, cleaning dir structure
This commit is contained in:
parent
29f16c055e
commit
1beb40c96c
5 changed files with 41 additions and 34 deletions
43
conf/tmux.conf
Normal file
43
conf/tmux.conf
Normal file
|
@ -0,0 +1,43 @@
|
|||
### CONFIG
|
||||
set -g default-terminal "screen-256color"
|
||||
set -g base-index 1
|
||||
set -g renumber-windows on
|
||||
set -g set-titles on
|
||||
set -g mouse off
|
||||
setw -g aggressive-resize on
|
||||
setw -g automatic-rename on
|
||||
|
||||
### UNDBIND
|
||||
unbind-key S
|
||||
### BINDS
|
||||
#
|
||||
set -g prefix C-a
|
||||
bind a send-prefix
|
||||
bind ^X lock-server
|
||||
bind x lock-server
|
||||
bind : command-prompt
|
||||
bind ^C new-window
|
||||
bind c new-window
|
||||
bind ^N next-window
|
||||
bind n next-window
|
||||
bind ^P next-window
|
||||
bind p next-window
|
||||
bind ^[ copy-mode
|
||||
bind [ copy-mode
|
||||
bind ^D detach
|
||||
bind d detach
|
||||
bind " " next-window
|
||||
bind w command-prompt "rename-window %%"
|
||||
bind ^L choose-window
|
||||
bind l choose-window
|
||||
bind ^K kill-window
|
||||
bind k kill-window
|
||||
bind | split-window -h
|
||||
bind - split-window -v
|
||||
|
||||
### COLORS
|
||||
set -g status-bg "colour234"
|
||||
set -g status-left "#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=colour236,bg=colour234,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour236] #(uptime | awk -F'average.*: ' '{print $2}') #[fg=colour252,bg=colour236,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour252] #h "
|
||||
setw -g window-status-format "#[fg=colour244,bg=colour234] #I #[fg=colour250,bg=colour234] #W "
|
||||
setw -g window-status-current-format "#[fg=colour234,bg=colour31,nobold,nounderscore,noitalics]#[fg=colour117,bg=colour31] #I #[fg=colour231,bg=colour31,bold] #W #[fg=colour31,bg=colour234,nobold,nounderscore,noitalics]"
|
Loading…
Add table
Add a link
Reference in a new issue