kitty -> wezterm

This commit is contained in:
baduhai 2022-12-23 00:12:49 -03:00
parent 853472ea35
commit 8d99b28240
2 changed files with 14 additions and 28 deletions

View file

@ -25,7 +25,6 @@
inkscape inkscape
# itch # Currently using unsafe electron version # itch # Currently using unsafe electron version
kate kate
kitty
kolourpaint kolourpaint
libreoffice-qt libreoffice-qt
logseq logseq
@ -52,6 +51,7 @@
vagrant vagrant
ventoy-bin ventoy-bin
virt-manager virt-manager
wezterm
yakuake yakuake
# Package overrides # Package overrides
(appimage-run.override { (appimage-run.override {

View file

@ -40,34 +40,20 @@
update_ms = 500; update_ms = 500;
}; };
}; };
kitty = { wezterm = {
enable = true; enable = true;
theme = "Afterglow"; extraConfig = ''
font = { local wezterm = require 'wezterm'
name = "Hack Nerd Font"; return {
size = 10; font_size = 10,
}; color_scheme = 'Twilight (base16)',
keybindings = { hide_tab_bar_if_only_one_tab = true,
"kitty_mod+f" = "launch --location=hsplit --allow-remote-control kitty +kitten search.py @active-kitty-window-id"; font = wezterm.font_with_fallback ({
}; "Hack Nerd Font",
settings = { "Noto Color Emoji",
clipboard_control = "write-clipboard read-clipboard write-primary read-primary"; }),
confirm_os_window_close = "-2"; }
cursor_shape = "block"; '';
initial_window_height = "570";
initial_window_width = "120c";
remember_window_size = "no";
tab_bar_background = "#3b3b3b";
tab_bar_margin_color = "#3b3b3b";
tab_bar_margin_height = "3 3";
tab_bar_margin_width = 2;
tab_bar_min_tabs = 1;
tab_bar_style = "fade";
tab_fade = 0;
tab_switch_strategy = "left";
tab_title_template = "{fmt.bg._3b3b3b}{fmt.fg._202020}{fmt.fg.default}{fmt.bg._202020}{fmt.fg._c6c6c6} {title} {fmt.fg.default}{fmt.bg.default}{fmt.fg._202020}{fmt.fg.default}";
active_tab_title_template = "{fmt.bg._3b3b3b}{fmt.fg._fcfcfc}{fmt.fg.default}{fmt.bg._fcfcfc}{fmt.fg._3b3b3b} {title} {fmt.fg.default}{fmt.bg.default}{fmt.fg._fcfcfc}{fmt.fg.default}";
};
}; };
}; };
} }