Compare commits

..

No commits in common. "0ea58b9f1ce3032143033a4ab71fa73e664c4bee" and "97987beea8f929e8fec30ee9e6a8bdd1f1ef82e0" have entirely different histories.

View File

@ -1,20 +1,7 @@
############### [Personal settings] ############### ############### [Personal settings] ###############
# Windows and panes numbering # Mouse
set -g base-index 1 set -g mouse on
setw -g pane-base-index 1
set -g renumber-windows on
# Terminal colors
# Force terminal for 256 colors support
# set -g default-terminal "screen-256color"
set -g default-terminal "tmux-256color"
# You can find the definition file here : https://github.com/tmux/tmux/files/1725937/tmux-256color.terminfo.txt
# and install it with this command : tic -x tmux-256color.terminfo.txt
# Alternative if tmux-256color is not available
set -as terminal-overrides ",*256col*:RGB"
set -as terminal-overrides ",*256col*:Tc"
# Display titles # Display titles
set -g set-titles on set -g set-titles on
@ -29,7 +16,16 @@ set -g set-titles-string "#T"
# bind | split-window -h # bind | split-window -h
# bind _ split-window -v # bind _ split-window -v
############### [ Keybindings ] ############### # Force terminal for 256 colors support
# set -g default-terminal "screen-256color"
set -g default-terminal "tmux-256color"
# You can find the definition file here : https://github.com/tmux/tmux/files/1725937/tmux-256color.terminfo.txt
# and install it with this command : tic -x tmux-256color.terminfo.txt
# Alternative if tmux-256color is not available
set -as terminal-overrides ",*256col*:RGB"
set -as terminal-overrides ",*256col*:Tc"
# Keybindings
unbind % unbind %
@ -45,24 +41,14 @@ bind -n S-right swap-window -t +1
bind z resize-pane -Z bind z resize-pane -Z
# # bind -n F8 new-window qbco # bind -n F8 new-window qbco
# # bind -n F8 new-window bash -c 'source ~/Repositories/Gitlab/bash-tools/libs/kgb.bash && source ~/Repositories/Gitlab/bash-tools/libs/misc.bash && qbco' # bind -n F8 new-window bash -c 'source ~/Repositories/Gitlab/bash-tools/libs/kgb.bash && source ~/Repositories/Gitlab/bash-tools/libs/misc.bash && qbco'
# bind -n -N "Select cluster with fzf, authenticate with qbco then launch k9s in a new window" F9 new-window qb9s bind -n -N "Select cluster with fzf, authenticate with qbco then launch k9s in a new window" F9 new-window qb9s
# bind -n -N "Select cluster with fzf, authenticate with qbco then launch k9s in a split window" S-F9 split-window qb9s bind -n -N "Select cluster with fzf, authenticate with qbco then launch k9s in a split window" S-F9 split-window qb9s
# bind -N "emit F9 key press with prefix-F9 (because we have bound F9 to another shortcut)" F9 send-keys F9 bind -N "emit F9 key press with prefix-F9 (because we have bound F9 to another shortcut)" F9 send-keys F9
############### [ Mouse support ] ###############
set -g mouse on
############### [ Plugins ] ############### ############### [ Plugins ] ###############
# Syntax:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# List of plugins to install # List of plugins to install
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
@ -72,10 +58,14 @@ set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'erikw/tmux-powerline' set -g @plugin 'erikw/tmux-powerline'
set -g @plugin "nordtheme/tmux" set -g @plugin "nordtheme/tmux"
# Initialize TMUX plugin manager (keep this section at the very bottom of tmux.conf) # Other examples:
%hidden PLUGINGDIR="~/.local/state/tmux/plugins" # set -g @plugin 'github_username/plugin_name'
if "test ! -d ${PLUGINGDIR}" { # set -g @plugin 'github_username/plugin_name#branch'
run "mkdir -p $PLUGINGDIR && git clone https://github.com/tmux-plugins/tpm ${PLUGINGDIR}/tpm && ${PLUGINGDIR}/tpm/tpm && ${PLUGINGDIR}/tpm/bin/install_plugins" # set -g @plugin 'git@github.com:user/plugin'
} { # set -g @plugin 'git@bitbucket.com:user/plugin'
run "${PLUGINGDIR}/tpm/tpm"
} # Automatically install tpm
if "test ! -d ~/.tmux/plugins/tpm" "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run "${HOME}/.config/tmux/plugins/tpm/tpm"