tarch-configs/configs/tmux/tmux.conf
2024-02-21 10:26:43 +03:00

27 lines
752 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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"