From 3a4aa95c2976daaea0773e303ba2f1359617effb Mon Sep 17 00:00:00 2001 From: Von Random Date: Sat, 10 Sep 2022 02:50:21 +0300 Subject: [PATCH] kitty: keep settings; tmux: revert to more compatible term; wezterm: more hotkeys --- kitty.conf | 3 +-- tmux.conf | 2 +- wezterm.lua | 13 +++++++++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/kitty.conf b/kitty.conf index 948de35..8e47c6a 100644 --- a/kitty.conf +++ b/kitty.conf @@ -1,8 +1,7 @@ # I am config font_family JetBrains Mono -font_size 15 +font_size 16 adjust_line_height 0 -adjust_column_width -1 box_drawing_scale 0.1, 0.5, 1, 1.5 disable_ligatures cursor cursor_blink_interval 0 diff --git a/tmux.conf b/tmux.conf index 2504486..a07187a 100644 --- a/tmux.conf +++ b/tmux.conf @@ -43,4 +43,4 @@ set -g status-right-length "100" # relevant to local only set -g terminal-overrides "alacritty:Tc,kitty-xterm:Tc,xterm-256color:Tc,rxvt-unicode*:Tc" -set -g default-terminal "tmux-direct" +set -g default-terminal "tmux-256color" diff --git a/wezterm.lua b/wezterm.lua index 3ea41f2..d5b1e76 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -4,7 +4,7 @@ local fontsize_darwin = 15 local fontsize_others = 11 local theme_n = 0 local theme = - 'PencilDark' + 'Elio (Gogh)' local themes = { 'BirdsOfParadise', 'Blazer', @@ -33,6 +33,12 @@ local themes = { 'Parker Brothers (terminal.sexy)', -- unique but kinda dark 'PaulMillr', -- bright and clear 'PencilDark', -- very nice, matches PencilColors + 'Rasi (terminal.sexy)', -- legitemately nice, yet dark + 'Red Planet', -- dull, low contrast + 'Rezza (terminal.sexy)', -- same + 'SeaShells', -- wonderful colors, dark and vivid + 'SleepyHollow', -- unusual colors + 'Srcery (Gogh)', -- nice, but a bit too low on contrast } local webinar_overrides = { harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' }, @@ -90,6 +96,9 @@ return { { key = 'j', mods = 'LEADER', action = act.ActivatePaneDirection 'Down' }, { key = 'k', mods = 'LEADER', action = act.ActivatePaneDirection 'Up' }, { key = 'l', mods = 'LEADER', action = act.ActivatePaneDirection 'Right' }, - { key = 'z', mods = 'LEADER', action = act.TogglePaneZoomState } + { key = 'u', mods = 'LEADER', action = act.RotatePanes 'Clockwise' }, + { key = 'i', mods = 'LEADER', action = act.RotatePanes 'CounterClockwise' }, + { key = 'Return', mods = 'LEADER', action = act.TogglePaneZoomState }, + { key = 'Space', mods = 'LEADER', action = act.PaneSelect }, }, }