From 923f210301950d086a41d3a50cc78ad5d04a4979 Mon Sep 17 00:00:00 2001 From: sML Date: Thu, 8 Feb 2024 12:09:48 +0100 Subject: [PATCH] Added tmux --- README.md | 10 ++++++++++ tmux/.tmux.conf | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 tmux/.tmux.conf diff --git a/README.md b/README.md index c381bc2..a380401 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # DOTFILES Here can be found my config files. +The files should be placed in: + +## I3WM +~/.config/i3/config + +## TMUX +~/tmux.conf + +## KITTY +~/.config/kitty diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..64b8bf1 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,33 @@ +set-option -g history-limit 25000 +set -g mouse on + +# for neovim +set -sg escape-time 10 + +# vi for copy mode +setw -g mode-keys vi + +# status bar +set -g status-right "#(pomo)" +set -g status-style "fg=#665c54" +set -g status-left-style "fg=#928374" + +set -g status-bg default +set -g status-position top +set -g status-interval 1 +set -g status-left "" + +# disable status +# set -g status off +# set -g status on + +# count the panes from 1 +set -g base-index 1 +setw -g pane-base-index 1 + +# reload configuration +bind-key -r r source-file ~/.tmux.conf + +# term colors, these are the correct ones according to neovim checkhealth + +set-option -g default-terminal "screen-256color"