This commit is contained in:
Morten Olsen
2023-09-16 12:33:21 +02:00
parent 6dbaad1bbe
commit 33f79566b7
65 changed files with 387 additions and 228 deletions

View File

@@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "FiraCode Nerd Font Mono Reg";
size = 12;
package = (pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; });
};
settings = {
# Enable ligatures
draw_ligatures = true;
italic_font = "auto";
bold_italic_font = "auto";
disable_ligatures = "cursor";
enable_audio_bell = false;
bell_on_tab = false;
background_opacity = "0.8";
};
};
}