Compare commits

...

4 Commits

Author SHA1 Message Date
bretello 05699e751b
tmux: enable mouse by default 2023-06-22 11:27:27 +02:00
bretello f6a405657c
tmux: disable monitor-activity by default 2023-06-22 11:26:38 +02:00
bretello e9ad8a563d
tmux: reduce history size to 1e4 2023-06-22 11:26:26 +02:00
bretello 5563b3434f
vim: fix aupat for iptables files 2023-06-22 11:25:33 +02:00
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,4 @@
set-option -g mouse
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf
set-option -g status-style bg=colour235,fg=colour136,default # bg=base02, fg=yellow
@ -23,7 +24,7 @@ set-option -g display-panes-colour colour166 #orange
# clock
set-window-option -g clock-mode-colour green #green
set -g history-limit 100000
set -g history-limit 10000
set -g status-interval 1
set -g status-justify centre # center align window list
set -g status-left-length 20
@ -52,7 +53,7 @@ setw -g aggressive-resize on
bind-key a send-prefix
# Activity monitoring
setw -g monitor-activity on
# setw -g monitor-activity on
set -g visual-activity on
# hjkl pane traversal

View File

@ -85,7 +85,7 @@ au BufRead *.dvc set filetype=yaml
au BufRead,BufNewFile */playbooks/*.yml set filetype=yaml.ansible
au BufRead,BufNewFile */.github/*/*.y{,a}ml
\ let b:ale_linters = {'yaml': ['actionlint'] }
au BufRead,BufNewFile rules.v[46] *.rules setlocal filetype=iptables
au BufRead,BufNewFile rules.v[46],*.rules setlocal filetype=iptables
autocmd! bufwritepost ~/.vimrc source ~/.vimrc