vim, tmux: Add tmuxline
This commit is contained in:
parent
d992420606
commit
0d5b088a3a
|
@ -16,3 +16,9 @@ c cycle-values audio-channels stereo mono auto
|
|||
K cycle-values glsl-shaders ~~/shaders/ravu-lite-r4.hook ~~/shaders/ravu-lite-r3.hook ~~/shaders/ravu-lite-r2.hook /dev/null
|
||||
|
||||
Ctrl+p script-message-to pitchcontrol toggle
|
||||
|
||||
# more granular panning
|
||||
Alt+left add video-pan-x 0.05
|
||||
Alt+right add video-pan-x -0.05
|
||||
Alt+up add video-pan-y 0.05
|
||||
Alt+down add video-pan-y -0.05
|
||||
|
|
|
@ -48,6 +48,9 @@ let g:airline_powerline_fonts = 1
|
|||
let g:airline_solarized_bg='dark'
|
||||
let g:airline_theme='solarized'
|
||||
|
||||
" Airline for tmux
|
||||
Plug 'edkolev/tmuxline.vim'
|
||||
|
||||
" Better word motion
|
||||
Plug 'chaoren/vim-wordmotion'
|
||||
|
||||
|
|
|
@ -32,3 +32,5 @@ set -g default-terminal "screen-256color"
|
|||
|
||||
# Lower escape time for smoother usage in vim
|
||||
set -sg escape-time 10
|
||||
|
||||
source-file ~/.tmux/tmuxline.conf
|
||||
|
|
21
home/.tmux/tmuxline.conf
Normal file
21
home/.tmux/tmuxline.conf
Normal file
|
@ -0,0 +1,21 @@
|
|||
# This tmux statusbar config was created by tmuxline.vim
|
||||
# on Sun, 24 May 2020
|
||||
|
||||
set -g status-justify "left"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=colour7,bg=colour11"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=colour14"
|
||||
set -g status-style "none,bg=colour0"
|
||||
set -g message-style "fg=colour7,bg=colour11"
|
||||
set -g pane-border-style "fg=colour11"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=colour10,bg=colour0"
|
||||
set -g status-left "#[fg=colour15,bg=colour14,bold] #S #[fg=colour14,bg=colour0,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=colour11,bg=colour0,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour11] %Y-%m-%d %H:%M #[fg=colour14,bg=colour11,nobold,nounderscore,noitalics]#[fg=colour15,bg=colour14] #h "
|
||||
setw -g window-status-format "#[fg=colour10,bg=colour0] #I #[fg=colour10,bg=colour0] #W "
|
||||
setw -g window-status-current-format "#[fg=colour0,bg=colour11,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour11] #I #[fg=colour7,bg=colour11] #W #[fg=colour11,bg=colour0,nobold,nounderscore,noitalics]"
|
Reference in a new issue