Update tmux config, enable expandtab in nvim
This commit is contained in:
parent
0b0132511d
commit
fcabe02c4f
2 changed files with 56 additions and 24 deletions
|
@ -21,7 +21,7 @@ set number
|
|||
" Display
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
"set expandtab
|
||||
set expandtab
|
||||
"set softtabstop=4
|
||||
|
||||
" Show tabs & trailing space
|
||||
|
|
|
@ -1,27 +1,59 @@
|
|||
# remap prefix from 'C-b' to 'C-a'
|
||||
#####################
|
||||
# KEYBINDINGS #
|
||||
#####################
|
||||
# remap prefix from Ctrl+B to Ctrl+A
|
||||
unbind C-b
|
||||
set -g prefix C-a
|
||||
bind C-a send-prefix
|
||||
|
||||
# Enable mouse mode
|
||||
set -g mouse on
|
||||
|
||||
# Stop renaming windows automatically
|
||||
set-option -g allow-rename off
|
||||
|
||||
# Display
|
||||
# Status Bar
|
||||
set-option -g status-position top
|
||||
# reload config file
|
||||
bind r source-file ~/.config/tmux/tmux.conf \; display-message "tmux configuration reloaded"
|
||||
|
||||
#####################
|
||||
# BEHAVIOUR #
|
||||
#####################
|
||||
set -g allow-rename off # stop renaming windows automatically
|
||||
set -g base-index 1 # start window numbering at 1
|
||||
set -g pane-base-index 1 # make pane numbering consistent with windows
|
||||
set -g pane-base-index 1 # keep pane numbering consistent with windows
|
||||
set -g renumber-windows on # renumber windows when window closed
|
||||
set -g mouse on # enable mouse mode
|
||||
|
||||
# TMUX plugin manager
|
||||
# Conform to XDG Base Directory specification
|
||||
#####################
|
||||
# VISUAL CHANGES #
|
||||
#####################
|
||||
# general
|
||||
set -g status-position top # status bar at top
|
||||
set -g status-fg colour6 # default foreground colour
|
||||
set -g status-bg black # default background colour
|
||||
set -g window-status-separator ' ' # status separator - space
|
||||
set -g status-left "" # left status bar not used
|
||||
|
||||
# right status bar - iso8601 date + time
|
||||
set -g status-right "#[fg=black,bg=colour6] %y-%m-%d #[bg=black] #[fg=black,bg=colour4] %H:%M "
|
||||
|
||||
# current window
|
||||
set -g window-status-current-format "#[fg=black,bg=colour4] #I #[fg=colour4,bg=colour240,bold] #W "
|
||||
|
||||
# standard window
|
||||
set -g window-status-format "#[fg=colour6,bg=colour238] #I #[fg=colour6,bg=colour238] #W "
|
||||
|
||||
# panes
|
||||
set -g pane-active-border-fg colour4 # border foreground colour of active pane
|
||||
set -g pane-active-border-bg colour236 # border background colour of active pane
|
||||
set -g pane-border-fg colour238 # border foreground colour of inactive pane(s)
|
||||
set -g pane-border-bg colour236 # border background colour of inactive pane(s)
|
||||
|
||||
# messages
|
||||
set -g message-fg black # foreground colour of messages
|
||||
set -g message-bg colour5 # background colour of messages
|
||||
|
||||
#####################
|
||||
#TMUX PLUGIN MANAGER#
|
||||
#####################
|
||||
# conform to XDG base directory specification
|
||||
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.config/tmux/plugins'
|
||||
|
||||
#List of plugins
|
||||
# list of plugins
|
||||
set -g @tpm_plugins ' \
|
||||
tmux-plugins/tpm \
|
||||
tmux-plugins/tmux-yank \
|
||||
|
@ -29,14 +61,14 @@ set -g @tpm_plugins ' \
|
|||
tmux-plugins/tmux-pain-control \
|
||||
'
|
||||
|
||||
# Other examples:
|
||||
# other examples:
|
||||
# set -g @plugin 'github_username/plugin_name'
|
||||
# set -g @plugin 'git@github.com/user/plugin'
|
||||
# set -g @plugin 'git@bitbucket.com/user/plugin'
|
||||
|
||||
# Install TPM if not already installed
|
||||
# install TPM if not already installed
|
||||
if "test ! -d ~/.config/tmux/plugins/tpm" \
|
||||
"run 'git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm'"
|
||||
|
||||
# Initialise TMUX plugin manager (always keep at bottom)
|
||||
# initialise TPM (always keep at bottom of tmux.conf)
|
||||
run ~/.config/tmux/plugins/tpm/tpm
|
||||
|
|
Loading…
Reference in a new issue