feat: Adding large changes to the neovim config, adding documentation to everything, and minor tweaks to zsh, tmux and wezterm

This commit is contained in:
2025-05-12 07:16:39 -05:00
parent 742b4d43a2
commit 1ad3cef941
6 changed files with 207 additions and 113 deletions

View File

@@ -7,6 +7,7 @@ setw -gq utf8 on
# Allow mouse interactions
set -g mouse on
# Disable auto-renaming of windows
set-option -g allow-rename
# Bindings
@@ -18,8 +19,12 @@ bind-key C-Space send-prefix
## More natural window splits
bind \\ split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
## Remove original split shortcuts
unbind '"'
unbind %
## Reload the config while inside of tmux
bind r source-file ~/.tmux.conf; display-message "Config reloaded..."
## Better pane navigation
@@ -32,9 +37,6 @@ bind -n C-M-l select-pane -R
bind -n M-h previous-window
bind -n M-l next-window
## Reload the config while inside of tmux
bind r source-file ~/.tmux.conf
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
@@ -44,4 +46,5 @@ set -g @plugin 'egel/tmux-gruvbox'
# Plugin settings
# set -g @tmux-gruvbox 'dark-transparent'
## Required for TPM plugins
run '~/.tmux/plugins/tpm/tpm'