From 90c9a4ed5a3d10b19309c0c90878acacc0be2d91 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 26 Aug 2025 12:04:22 -0500 Subject: [PATCH] Update tmux keybindings, increase nvim line num brightness --- .../david_standard/plugins_lazy/colorschemes.lua | 2 ++ src_files/.config/tmux/tmux.conf | 13 +++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src_files/.config/nvim/lua/david_standard/plugins_lazy/colorschemes.lua b/src_files/.config/nvim/lua/david_standard/plugins_lazy/colorschemes.lua index cdf7e17..bf5c0cb 100644 --- a/src_files/.config/nvim/lua/david_standard/plugins_lazy/colorschemes.lua +++ b/src_files/.config/nvim/lua/david_standard/plugins_lazy/colorschemes.lua @@ -35,6 +35,7 @@ return { { "folke/tokyonight.nvim", lazy = false, + priority = 1000, opts = { style = "night", -- "night", "storm", "moon", "day" styles = { @@ -43,6 +44,7 @@ return { on_colors = function(colors) colors.hint = colors.orange colors.error = "#ff0000" + colors.fg_gutter = "#9098B8" end }, } diff --git a/src_files/.config/tmux/tmux.conf b/src_files/.config/tmux/tmux.conf index f546a68..b0cc22d 100644 --- a/src_files/.config/tmux/tmux.conf +++ b/src_files/.config/tmux/tmux.conf @@ -2,8 +2,8 @@ set -s escape-time 0 unbind C-b -set-option -g prefix C-a -bind-key C-a send-prefix +set-option -g prefix C-Space +bind-key C-Space send-prefix set -g status-style 'bg=#111111 fg=#22cc00' set -g base-index 0 @@ -26,12 +26,13 @@ bind-key Q rename-session zzzz-temp-kill\; switch-client -p\; kill-session -t zz bind-key W kill-session # find and switching for sessions, include using tmux-sessionizer -unbind-key f +unbind-key f; unbind-key C-f; unbind-key C-s +unbind-key C-h; unbind-key C-l; unbind-key C-o; unbind-key C-n; unbind-key C-p bind-key C-f run-shell "tmux neww $DIR_SCRIPTS/tmux-sessionizer" bind-key C-s run-shell "tmux neww $DIR_SCRIPTS/tmux-sessionizer existing" bind-key C-h run-shell "tmux neww $DIR_SCRIPTS/tmux-sessionizer hub" bind-key C-l switch-client -l -bind -r C-o last-window -bind-key C-n next-window -bind-key C-p previous-window +bind-key C-o last-window +bind-key -r C-n next-window +bind-key -r C-p previous-window