From 2ec89195f582e9e8363e99c5d942ca6be91d601e Mon Sep 17 00:00:00 2001 From: godot Date: Wed, 17 Apr 2024 22:26:52 +0200 Subject: [PATCH] ricing up --- README.md | 7 +++++++ plugins/tmux | 1 + plugins/tpm | 1 + tmux.conf | 39 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 README.md create mode 160000 plugins/tmux create mode 160000 plugins/tpm create mode 100644 tmux.conf diff --git a/README.md b/README.md new file mode 100644 index 0000000..5008e5b --- /dev/null +++ b/README.md @@ -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] diff --git a/plugins/tmux b/plugins/tmux new file mode 160000 index 0000000..b26eb2f --- /dev/null +++ b/plugins/tmux @@ -0,0 +1 @@ +Subproject commit b26eb2fa6d2dd524ceaf68a4751c1d1285d809df diff --git a/plugins/tpm b/plugins/tpm new file mode 160000 index 0000000..99469c4 --- /dev/null +++ b/plugins/tpm @@ -0,0 +1 @@ +Subproject commit 99469c4a9b1ccf77fade25842dc7bafbc8ce9946 diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..cb0edd0 --- /dev/null +++ b/tmux.conf @@ -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'