First commit

main
Atao 2024-01-07 00:17:58 +01:00
commit 4660dc3948
3 changed files with 54 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
plugins

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# My TMUX config
## Theme
[catppucin](https://github.com/catppuccin)
## Installation
- Copy to `~/.config/tmux/`
- Start `tmux`
- To install the plugins : `<prefix>+I`

44
tmux.conf Normal file
View File

@ -0,0 +1,44 @@
set-option -sa terminal-overrides ",xterm*:Tc"
set -g default-terminal "screen-256color"
set -g mouse on
# ---- Change prefix key
unbind C-b
set -g prefix C-x
bind C-x send-prefix
# ---- Change split bindings
unbind '"'
unbind %
bind h split-window -h
bind v split-window -v
# ---- Disable kill pane validation
bind x kill-pane
#---------------------------------------------------------- Plugins
set -g @plugin 'tmux-plugin/tpm'
set -g @plugin 'tmux-plugin/tmux-sensible'
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_window_left_separator "█"
set -g @catppuccin_window_right_separator "█ "
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#{pane_current_path}"
set -g @catppuccin_status_modules_right "application session date_time"
set -g @catppuccin_status_left_separator ""
set -g @catppuccin_status_right_separator " "
set -g @catppuccin_status_right_separator_inverse "yes"
set -g @catppuccin_status_fill "all"
set -g @catppuccin_status_connect_separator "no"
run '~/.tmux/plugins/tpm/tpm'