ricing up

This commit is contained in:
godot 2024-04-17 22:26:52 +02:00
parent 7e210e2373
commit 2ec89195f5
4 changed files with 48 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# Used plugins
- https://github.com/tmux-plugins/tpm(tmux plugin manager)
- https://github.com/catppuccin/tmux (colour scheme)
# Used tutorials
- (YT TypeCraft)[https://www.youtube.com/watch?v=jaI3Hcw-ZaA]

1
plugins/tmux Submodule

@ -0,0 +1 @@
Subproject commit b26eb2fa6d2dd524ceaf68a4751c1d1285d809df

1
plugins/tpm Submodule

@ -0,0 +1 @@
Subproject commit 99469c4a9b1ccf77fade25842dc7bafbc8ce9946

39
tmux.conf Normal file
View File

@ -0,0 +1,39 @@
unbind r
bind r source-file /home/godot/.config/tmux/tmux.conf
#set -g prefix C-s
set -g mouse on
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'catppuccin/tmux'
# catppuccin config
set -g @catppuccin_window_left_separator ""
set -g @catppuccin_window_right_separator " "
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#W"
set -g @catppuccin_status_modules_right "directory user host session"
set -g @catppuccin_status_left_separator " "
set -g @catppuccin_status_right_separator ""
set -g @catppuccin_status_fill "icon"
set -g @catppuccin_status_connect_separator "no"
set -g @catppuccin_directory_text "#{pane_current_path}"
# Runs TMUX plugin manager (have to be on the bottom of config)
run '~/.config/tmux/plugins/tpm/tpm'