Mon Jun 3 07:12:42 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-03 19:12:42 +02:00
parent 3ca8234d9d
commit fddbaa913b
3 changed files with 44 additions and 1 deletions

View File

@ -3,7 +3,7 @@
include current-theme.conf include current-theme.conf
# END_KITTY_THEME # END_KITTY_THEME
font_family Iosevka Term Extended font_family Iosevka Extended
bold_font auto bold_font auto
italic_font auto italic_font auto
bold_italic_font auto bold_italic_font auto

View File

@ -7,6 +7,7 @@
(import ./waybar { inherit inputs pkgs; }) (import ./waybar { inherit inputs pkgs; })
./rofi ./rofi
./alacritty ./alacritty
./kitty
./firefox ./firefox
./ssh ./ssh
./mpv ./mpv

42
home/kitty/default.nix Normal file
View File

@ -0,0 +1,42 @@
{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
shellIntegration.enableZshIntegration = true;
font = {
name = "Iosevka Extended";
size = 13;
};
settings = {
cursor_shape = "block";
cursor_beam_thickness = 10;
scrollback_lines = 100000;
# Theme
background = "#000010";
foreground = "#F8F8F2";
cursor = "#bbbbbb";
selection_background = "#b4d5ff";
color0 = "#121212";
color8 = "#545454";
color1 = "#fa2573";
color9 = "#f5669c";
color2 = "#97e123";
color10 = "#b0e05e";
color3 = "#dfd460";
color11 = "#fef26c";
color4 = "#0f7fcf";
color12 = "#00afff";
color5 = "#8700ff";
color13 = "#af87ff";
color6 = "#42a7cf";
color14 = "#50cdfe";
color7 = "#bbbbbb";
color15 = "#ffffff";
selection_foreground = "#121212";
background_opacity = 0.3;
};
};
}