Skip to content

Instantly share code, notes, and snippets.

@MiniCodeMonkey
Created April 13, 2020 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MiniCodeMonkey/4d668800d874a6886a50d6778d0a4540 to your computer and use it in GitHub Desktop.
Save MiniCodeMonkey/4d668800d874a6886a50d6778d0a4540 to your computer and use it in GitHub Desktop.
tmux config
# make sure nvim looks normal in tmux
#set -g terminal-overrides ',xterm-256color:Tc'
set -g default-terminal "tmux-256color"
#set -as terminal-overrides ',xterm*:sitm=\E[3m'
set -g history-limit 50000
setw -g mode-keys vi
set -g renumber-windows on
# so that escapes register immidiately in vim
#set -sg escape-time 0
# start index at 1
set -g base-index 1
# mouse support
#set -g mouse on
unbind C-b
set-option -g prefix C-q
bind-key C-q send-prefix
# styling
set -g status-bg black
set -g status-fg white
set -g status-right ""
set -g status-left "#H "
set -g status-justify left
set -g window-status-current-format "#[fg=magenta]#[fg=black]#[bg=magenta]#I #[bg=brightblack]#[fg=white] #W#[fg=brightblack]#[bg=black] "
set -g window-status-format "#[fg=yellow]#[fg=black]#[bg=yellow]#I #[bg=brightblack]#[fg=white] #W#[fg=brightblack]#[bg=black] "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment