add(nvim): fugitive blame maps

This commit is contained in:
Léana 江 2023-04-30 02:31:35 +02:00 committed by Léana 江
parent feef7fc9d6
commit 201dfd7dd7
4 changed files with 32 additions and 21 deletions

View file

@ -1,3 +1,5 @@
# some sane config for tmux
# plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
@ -5,6 +7,9 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
# mouse control
set -g mouse on
# Easy config reload
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
# enable italics
set -g default-terminal "xterm-256color"
@ -19,14 +24,14 @@ set-option -g prefix C-a
unbind C-b
# organic jumping
bind -n C-h select-window -t 0
bind -n C-t select-window -t 1
bind -n C-n select-window -t 2
bind -n C-s select-window -t 3
bind h select-window -t 0
bind t select-window -t 1
bind n select-window -t 2
bind s select-window -t 3
# improve window swapping
bind C-h swap-window -t -1
bind C-t swap-window -t +1
bind C-l swap-window -t -1 \; select-window -l
bind C-r swap-window -t +1 \; select-window -l
# status bar
set-option -g status-left '#{?window_name,#I:#W} #{T}'
@ -34,8 +39,11 @@ set-option -g status-left '#{?window_name,#I:#W} #{T}'
# escape delay
set -s escape-time 0
# reorder window number
# auto reorder window number
set-option -g renumber-windows on
# who the fuck thought prefix-[ is a good idea ??!?!
bind v copy-mode
# initialize tpm (TMUX plugin manager)
run '~/.tmux/plugins/tpm/tpm'