diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2021-07-15 00:51:52 +0200 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2021-07-15 00:51:52 +0200 |
commit | b8b7563bd9cf1731cb5dc2e34ed88d5bc1e336c8 (patch) | |
tree | e320dfd772c6688e6c7c10df036c64ae50c57e45 /files/rcs/.tmux.conf | |
parent | 821fe221f0a99cb808ea1f6485ba4fe2acf5b1b3 (diff) | |
download | configs-b8b7563bd9cf1731cb5dc2e34ed88d5bc1e336c8.tar.gz configs-b8b7563bd9cf1731cb5dc2e34ed88d5bc1e336c8.zip |
Morphed repo to stow structure. Added a bunch of configs in the process.
Diffstat (limited to 'files/rcs/.tmux.conf')
-rw-r--r-- | files/rcs/.tmux.conf | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/files/rcs/.tmux.conf b/files/rcs/.tmux.conf deleted file mode 100644 index 62f9762..0000000 --- a/files/rcs/.tmux.conf +++ /dev/null @@ -1,71 +0,0 @@ -unbind C-b -set -g prefix m-a -bind m-a send-prefix -set-option -g default-terminal "screen-256color" -set -g xterm-keys on -#setw -g monitor-activity on -#set -g visual-activity on -set -g mode-keys vi -set -g status-keys vi - -# Theme -#set-option -g status-style attr=default -# status bar -set-option -g status-style "fg=colour4 bg=default" -# status bar windows -set-window-option -g window-status-style "fg=colour4 bg=default" -# status bar selected window -set -g window-status-current-style "fg=colour13 bg=default" -#set-window-option -g window-status-current-attr bold default -# pane borders -set-option -g pane-border-style "fg=colour0 bg=default" -set-option -g pane-active-border-style "fg=colour4 bg=default" -# pane number display -set-option -g display-panes-colour colour4 -set-option -g display-panes-active-colour colour5 -# messages -set-option -g message-style "fg=colour2 bg=default" -# clock -set-window-option -g clock-mode-colour colour4 -# sizes -set -g status-interval 60 -set -g status-left-length 20 -#set -g status-left '#[fg=green](#S) #(whoami) ' -set -g status-left '(#S) ' -#zoom -#{?window_zoomed_flag, ,🔍} - -set -g base-index 0 -set -s escape-time 0 -bind r source-file ~/.tmux.conf \; display-message "Config reloaded" -bind-key C command-prompt -p "Name of new window:" "new-window -n '%%'" - -# moving between panes with vim movement keys -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - -# moving between windows with vim movement keys -#bind -r H select-window -t :- -#bind -r L select-window -t :+ - -# resize panes with vim movement keys -bind -r m-h resize-pane -L 1 -bind -r m-j resize-pane -D 1 -bind -r m-k resize-pane -U 1 -bind -r m-l resize-pane -R 1 -bind -r m-H resize-pane -L 10 -bind -r m-J resize-pane -D 10 -bind -r m-K resize-pane -U 10 -bind -r m-L resize-pane -R 10 - -# cursor shape in nvim -set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q' - -# recommended by nvim :healthcheck -set-option -sa terminal-overrides ',rxvt-256color:RGB' - -# tmux-url-select -bind u run tmux-url-select - |