diff options
Diffstat (limited to 'home-manager/kitty')
| -rw-r--r-- | home-manager/kitty/default.nix | 24 | ||||
| -rw-r--r-- | home-manager/kitty/palenight.conf | 40 |
2 files changed, 64 insertions, 0 deletions
diff --git a/home-manager/kitty/default.nix b/home-manager/kitty/default.nix new file mode 100644 index 0000000..7d7326b --- /dev/null +++ b/home-manager/kitty/default.nix @@ -0,0 +1,24 @@ +{ + pkgs, + config, + ... +}: +{ + programs.kitty = { + enable = true; + keybindings = { + "control+shift+c" = "copy_to_clipboard"; + "control+shift+v" = "paste_from_clipboard"; + }; + settings = { + #font_family = "Cousine Nerd Font"; + #font_size = "10.0"; + #background_opacity = "0.8"; + term = "xterm-256color"; + enable_audio_bell = "no"; + mouse_hide_wait = 2; + window_padding_width = 4; + }; + #extraConfig = (builtins.readFile ./palenight.conf); + }; +} diff --git a/home-manager/kitty/palenight.conf b/home-manager/kitty/palenight.conf new file mode 100644 index 0000000..6a58ece --- /dev/null +++ b/home-manager/kitty/palenight.conf @@ -0,0 +1,40 @@ +# Palenight Colorscheme for Kitty +# Based on https://github.com/sindresorhus/hyper-snazzy + +foreground #959dcb +background #292d3e +selection_foreground #eceef0 +selection_background #607c8b +url_color #82aaff + +# black +color0 #434759 +color8 #434758 + +# red +color1 #f07178 +color9 #ff8b92 + +# green +color2 #c3e88d +color10 #ddffa7 + +# yellow +color3 #ffcb6b +color11 #ffe585 + +# blue +color4 #82aaff +color12 #9cc4ff + +# magenta +color5 #c792ea +color13 #e1acff + +# cyan +color6 #89ddff +color14 #a3f7ff + +# white +color7 #d0d0d0 +color15 #fefefe |
