1
0
Fork 0

kitty: keep settings; tmux: revert to more compatible term; wezterm: more hotkeys

This commit is contained in:
Von Random 2022-09-10 02:50:21 +03:00
parent b7275633dd
commit 3a4aa95c29
3 changed files with 13 additions and 5 deletions

View file

@ -1,8 +1,7 @@
# I am config # I am config
font_family JetBrains Mono font_family JetBrains Mono
font_size 15 font_size 16
adjust_line_height 0 adjust_line_height 0
adjust_column_width -1
box_drawing_scale 0.1, 0.5, 1, 1.5 box_drawing_scale 0.1, 0.5, 1, 1.5
disable_ligatures cursor disable_ligatures cursor
cursor_blink_interval 0 cursor_blink_interval 0

View file

@ -43,4 +43,4 @@ set -g status-right-length "100"
# relevant to local only # relevant to local only
set -g terminal-overrides "alacritty:Tc,kitty-xterm:Tc,xterm-256color:Tc,rxvt-unicode*:Tc" 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"

View file

@ -4,7 +4,7 @@ local fontsize_darwin = 15
local fontsize_others = 11 local fontsize_others = 11
local theme_n = 0 local theme_n = 0
local theme = local theme =
'PencilDark' 'Elio (Gogh)'
local themes = { local themes = {
'BirdsOfParadise', 'BirdsOfParadise',
'Blazer', 'Blazer',
@ -33,6 +33,12 @@ local themes = {
'Parker Brothers (terminal.sexy)', -- unique but kinda dark 'Parker Brothers (terminal.sexy)', -- unique but kinda dark
'PaulMillr', -- bright and clear 'PaulMillr', -- bright and clear
'PencilDark', -- very nice, matches PencilColors '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 = { local webinar_overrides = {
harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' }, harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' },
@ -90,6 +96,9 @@ return {
{ key = 'j', mods = 'LEADER', action = act.ActivatePaneDirection 'Down' }, { key = 'j', mods = 'LEADER', action = act.ActivatePaneDirection 'Down' },
{ key = 'k', mods = 'LEADER', action = act.ActivatePaneDirection 'Up' }, { key = 'k', mods = 'LEADER', action = act.ActivatePaneDirection 'Up' },
{ key = 'l', mods = 'LEADER', action = act.ActivatePaneDirection 'Right' }, { 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 },
}, },
} }