kitty: keep settings; tmux: revert to more compatible term; wezterm: more hotkeys
This commit is contained in:
parent
b7275633dd
commit
3a4aa95c29
3 changed files with 13 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
13
wezterm.lua
13
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 },
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue