Bind ctrl space in tmux to copy mode
Remove alacritty vi mode copy Add multiple tmux settings Add forced terminal colors to tmux Change alacritty font size
This commit is contained in:
parent
cb35593ff1
commit
1bac768d86
@ -14,7 +14,7 @@ multiplier = 1
|
||||
|
||||
[font]
|
||||
normal = { family = "Hack", style = "Regular" }
|
||||
size = 11.5
|
||||
size = 12
|
||||
|
||||
[colors]
|
||||
transparent_background_colors = true
|
||||
@ -27,3 +27,8 @@ hide_when_typing = true
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color"
|
||||
|
||||
[keyboard]
|
||||
bindings = [
|
||||
{ key = "Space", mods = "Control|Shift", action = "ReceiveChar" }
|
||||
]
|
@ -1,8 +1,44 @@
|
||||
# Bind Prefix + r to reload the config
|
||||
bind r source-file $XDG_CONFIG_HOME/tmux/tmux.conf \; display-message "Config reloaded!"
|
||||
|
||||
# Bind Ctrl + Space to enter copy mode
|
||||
bind -n C-Space copy-mode
|
||||
set-window-option -g mode-keys vi
|
||||
set -g status-right "#[fg=yellow]Copy Mode#[default]"
|
||||
|
||||
set -g status on
|
||||
|
||||
set -g mouse on
|
||||
|
||||
set-option -g history-limit 5000
|
||||
|
||||
set -g base-index 1
|
||||
setw -g pane-base-index 1
|
||||
set -g renumber-windows on
|
||||
|
||||
set -sa terminal-overrides "*:Tc"
|
||||
|
||||
# Dracula settings
|
||||
set -g @dracula-plugins "battery weather time"
|
||||
set -g @dracula-show-empty-plugins false
|
||||
|
||||
set -g @dracula-left-icon-padding 0
|
||||
|
||||
set -g @dracula-show-powerline true
|
||||
set -g @dracula-show-left-sep
|
||||
set -g @dracula-show-right-sep
|
||||
|
||||
set -g @dracula-battery-label false
|
||||
set -g @dracula-show-battery-status true
|
||||
set -g @dracula-no-battery-label false
|
||||
|
||||
set -g @dracula-show-fahrenheit false
|
||||
set -g @dracula-show-location false
|
||||
|
||||
set -g @dracula-time-format "%R"
|
||||
|
||||
# Plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'dracula/tmux'
|
||||
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
||||
set -g status on
|
Loading…
x
Reference in New Issue
Block a user