Update tmux keybindings, increase nvim line num brightness

This commit is contained in:
david
2025-08-26 12:04:22 -05:00
parent e884dc09e1
commit 90c9a4ed5a
2 changed files with 9 additions and 6 deletions

View File

@@ -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
},
}

View File

@@ -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