1
0
Fork 0
dotfiles/programs/kitty.nix

50 lines
997 B
Nix
Raw Normal View History

2022-02-08 09:10:13 +00:00
{ pkgs, ... }:
2022-02-03 22:35:52 +00:00
{
programs.kitty = {
enable = true;
settings = {
# Shell
2022-02-08 09:10:13 +00:00
shell = "${pkgs.fish}/bin/fish --interactive";
2022-02-03 22:35:52 +00:00
shell_integration = "no-cursor";
# Theme/Layout
window_padding_width = 3;
tab_title_template = "\"{index}: {title[:25]}\"";
tab_bar_style = "separator";
tab_separator = "\" \"";
macos_titlebar_color = "background";
macos_traditional_fullscreen = true;
macos_show_window_title_in = "window";
# UX
kitty_mod = "cmd";
cursor_blink_interval = 0;
enable_audio_bell = false;
visual_bell_duration = 0;
# Mouse
detect_urls = false;
allow_hyperlinks = false;
# Scrollback
scrollback_pager_history_size = 2;
};
font = {
name = "JetBrainsMono Nerd Font";
size = 13;
};
extraConfig = ''
include dracula.conf
'';
};
xdg.configFile.kitty = {
source = ../config/kitty;
recursive = true;
};
}