blob: b02702d404f221686fbdb98123e9d52de12f6ca4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
themeFile = "Modus_Operandi_Tinted";
settings = {
copy_on_select = "yes";
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
window_padding_width = "3 10";
enable_audio_bell = "no";
tab_bar_edge = "bottom";
tab_title_template = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}";
tab_bar_style = "powerline";
font_family = "Source Code Pro";
font_size = "15.0";
};
};
programs.fish.shellAliases = {
s = "${pkgs.kitty}/bin/kitten ssh";
};
}
|