configure bat
This commit is contained in:
parent
a8dfda28dd
commit
34955e3821
2 changed files with 31 additions and 26 deletions
|
|
@ -6,7 +6,6 @@
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
kdePackages.qttools
|
kdePackages.qttools
|
||||||
bat
|
|
||||||
eza
|
eza
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -99,32 +99,38 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.kitty = {
|
programs = {
|
||||||
enable = true;
|
kitty = {
|
||||||
enableGitIntegration = true;
|
enable = true;
|
||||||
font = {
|
enableGitIntegration = true;
|
||||||
name = config.userOptions.fontMono.name;
|
font = {
|
||||||
size = config.userOptions.fontMono.size;
|
name = config.userOptions.fontMono.name;
|
||||||
|
size = config.userOptions.fontMono.size;
|
||||||
|
};
|
||||||
|
shellIntegration.enableFishIntegration = true;
|
||||||
|
keybindings = {
|
||||||
|
"ctrl+k" = ''combine : clear_terminal scroll active : clear_terminal scrollback active'';
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
include = "/home/${config.userOptions.username}/.config/kitty/themes/kitty-colors.conf";
|
||||||
|
scrollback_lines = 10000;
|
||||||
|
enable_audio_bell = false;
|
||||||
|
update_check_interval = 0;
|
||||||
|
wheel_scroll_multiplier = 5.0;
|
||||||
|
confirm_os_window_close = 0;
|
||||||
|
window_padding_width = 4;
|
||||||
|
tab_bar_min_tabs = 2;
|
||||||
|
tab_bar_edge = "top";
|
||||||
|
tab_bar_style = "powerline";
|
||||||
|
tab_powerline_style = "slanted";
|
||||||
|
mouse_hide_wait = "-1.0";
|
||||||
|
wayland_titlebar_color = "system";
|
||||||
|
macos_titlebar_color = "system";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
shellIntegration.enableFishIntegration = true;
|
bat = {
|
||||||
keybindings = {
|
enable = true;
|
||||||
"ctrl+k" = ''combine : clear_terminal scroll active : clear_terminal scrollback active'';
|
config.theme = "Catppuccin ${config.catppuccinUpper.flavor}";
|
||||||
};
|
|
||||||
settings = {
|
|
||||||
include = "/home/${config.userOptions.username}/.config/kitty/themes/kitty-colors.conf";
|
|
||||||
scrollback_lines = 10000;
|
|
||||||
enable_audio_bell = false;
|
|
||||||
update_check_interval = 0;
|
|
||||||
wheel_scroll_multiplier = 5.0;
|
|
||||||
confirm_os_window_close = 0;
|
|
||||||
window_padding_width = 4;
|
|
||||||
tab_bar_min_tabs = 2;
|
|
||||||
tab_bar_edge = "top";
|
|
||||||
tab_bar_style = "powerline";
|
|
||||||
tab_powerline_style = "slanted";
|
|
||||||
mouse_hide_wait = "-1.0";
|
|
||||||
wayland_titlebar_color = "system";
|
|
||||||
macos_titlebar_color = "system";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue