added nanorc

This commit is contained in:
scbj
2024-10-07 16:35:42 +02:00
parent 9272481b3c
commit dad3a648dd
3 changed files with 36 additions and 9 deletions

View File

@@ -9,17 +9,20 @@ set-option -g prefix C-Space
# general keybindings
bind r source-file ~/.config/tmux/tmux.conf \; display-message "config reloaded"
bind -n M-S-Left previous-window
bind -n M-S-Left previous-window
bind -n M-S-Right next-window
bind -n C-h select-pane -L
bind -n C-j select-pane -D
bind -n C-k select-pane -U
bind -n C-l select-pane -R
bind -n M-Left select-pane -L
bind -n M-Down select-pane -D
bind -n M-Up select-pane -U
bind -n M-Right select-pane -R
# enable mouse support
set -g mouse on
# reasonable resizing
setw -g aggressive-resize on
# start window and pane index at 1
set -g base-index 1
set -g pane-base-index 1
@@ -28,3 +31,5 @@ set-option -g renumber-windows on
# status bar
set -g status-interval 5
set-window-option -g visual-bell off