diff --git a/alacritty/hezkore.toml b/alacritty/hezkore.toml index 386ba37..eef4d17 100644 --- a/alacritty/hezkore.toml +++ b/alacritty/hezkore.toml @@ -14,7 +14,7 @@ multiplier = 1 [font] normal = { family = "Hack", style = "Regular" } -size = 11.5 +size = 12 [colors] transparent_background_colors = true @@ -26,4 +26,9 @@ background = "#1e1f29" hide_when_typing = true [env] -TERM = "xterm-256color" \ No newline at end of file +TERM = "xterm-256color" + +[keyboard] +bindings = [ +{ key = "Space", mods = "Control|Shift", action = "ReceiveChar" } +] \ No newline at end of file diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 4a4d290..dbbc28a 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -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 \ No newline at end of file +run '~/.tmux/plugins/tpm/tpm' \ No newline at end of file