init: public
This commit is contained in:
29
modules/desktop/terminal/kitty/default.nix
Normal file
29
modules/desktop/terminal/kitty/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ config, lib, ... }:
|
||||
lib.my.makeHomeProgramConfig {
|
||||
inherit config;
|
||||
programName = "kitty";
|
||||
optionPath = [
|
||||
"desktop"
|
||||
"terminal"
|
||||
"kitty"
|
||||
];
|
||||
extraConfig = {
|
||||
my.home.programs.kitty = {
|
||||
settings = {
|
||||
cursor_blink_interval = 0;
|
||||
remember_window_size = "no";
|
||||
initial_window_width = 800;
|
||||
initial_window_height = 600;
|
||||
enable_audio_bell = "no";
|
||||
term = "xterm-256color";
|
||||
};
|
||||
font = {
|
||||
name = "monospace";
|
||||
size = 14;
|
||||
};
|
||||
extraConfig = ''
|
||||
include ${./tokyonight-storm.conf}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
50
modules/desktop/terminal/kitty/tokyonight-storm.conf
Normal file
50
modules/desktop/terminal/kitty/tokyonight-storm.conf
Normal file
@@ -0,0 +1,50 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: Tokyo Night Storm
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_storm.conf
|
||||
|
||||
|
||||
background #24283b
|
||||
foreground #c0caf5
|
||||
selection_background #2e3c64
|
||||
selection_foreground #c0caf5
|
||||
url_color #73daca
|
||||
cursor #c0caf5
|
||||
cursor_text_color #24283b
|
||||
|
||||
# Tabs
|
||||
active_tab_background #7aa2f7
|
||||
active_tab_foreground #1f2335
|
||||
inactive_tab_background #292e42
|
||||
inactive_tab_foreground #545c7e
|
||||
#tab_bar_background #1d202f
|
||||
|
||||
# Windows
|
||||
active_border_color #7aa2f7
|
||||
inactive_border_color #292e42
|
||||
|
||||
# normal
|
||||
color0 #1d202f
|
||||
color1 #f7768e
|
||||
color2 #9ece6a
|
||||
color3 #e0af68
|
||||
color4 #7aa2f7
|
||||
color5 #bb9af7
|
||||
color6 #7dcfff
|
||||
color7 #a9b1d6
|
||||
|
||||
# bright
|
||||
color8 #414868
|
||||
color9 #ff899d
|
||||
color10 #9fe044
|
||||
color11 #faba4a
|
||||
color12 #8db0ff
|
||||
color13 #c7a9ff
|
||||
color14 #a4daff
|
||||
color15 #c0caf5
|
||||
|
||||
# extended colors
|
||||
color16 #ff9e64
|
||||
color17 #db4b4b
|
||||
Reference in New Issue
Block a user