tarch-configs/configs/tmux/tmux.conf

27 lines
752 B
Plaintext
Raw Normal View History

2024-02-21 10:26:43 +03:00
set-option -sa terminal-overrides ",xterm*:Tc"
set -g mouse on
# для индексации окон и панелей с 1, а не с 0
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# привязки клавишь
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# set -g prefix Super_L
# bind Super_L send-prefix
bind -n S-Left previous-window
bind -n S-Right next-window
# подключение и настройка плагинов
set -g @plugin "tmux-plugins/tpm"
set -g @plugin "tmux-plugins/tmux-sensible"
set -g @plugin "christoomey/vim-tmux-navigator"
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_flavour 'mocha'
run "~/.tmux/plugins/tpm/tpm"