Compare commits

..

No commits in common. "002e288d487abb3029a2e78e2b4721117b719fd2" and "7e265f51b117ea308857cfbd38ec9f31e1d178eb" have entirely different histories.

3 changed files with 25 additions and 44 deletions

View file

@ -1,5 +1,9 @@
{ {
osConfig,
lib,
config,
pkgs, pkgs,
inputs',
... ...
}: { }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -15,6 +19,7 @@
title = "foot"; title = "foot";
locked-title = "no"; locked-title = "no";
term = "xterm-256color"; term = "xterm-256color";
pad = "16x16 center";
shell = "zsh"; shell = "zsh";
# notifications # notifications
@ -23,14 +28,9 @@
# font and font rendering # font and font rendering
dpi-aware = false; # this looks more readable on a laptop, but it's unreasonably large dpi-aware = false; # this looks more readable on a laptop, but it's unreasonably large
font = "Monaspace Krypton:size=11"; font = "Iosevka Nerd Font:size=14";
font-bold = "Monaspace Krypton:size=11"; font-bold = "Iosevka Nerd Font:size=14";
}; vertical-letter-offset = "-0.90";
colors = {
alpha = 0.9;
background = "191919";
foreground = "d8dee9";
}; };
scrollback = { scrollback = {

View file

@ -10,47 +10,30 @@ in {
programs.kitty = { programs.kitty = {
enable = true; enable = true;
settings = { settings = {
# Font & Text style # General
font_family = "Monaspace Krypton"; background_opacity = "0.85";
font_size = 11; font_family = "monospace";
font_size = 14;
disable_ligatures = "never"; disable_ligatures = "never";
# Dark Theme
foreground = "#d8dee9";
background = "#191919";
# White theme (for screenshots in papers)
#foreground = "#191919";
#background = "#FFFFFF";
# URLs
url_color = "#0087bd";
url_style = "curly";
# Cursor
cursor = "#D0D0D0";
cursor_shape = "underline"; cursor_shape = "underline";
cursor_blink_interval = "0.5"; cursor_blink_interval = "0.5";
cursor_stop_blinking_after = "15.0"; cursor_stop_blinking_after = "15.0";
scrollback_lines = 10000;
# Background click_interval = "0.5";
background_opacity = "0.9"; select_by_word_characters = ":@-./_~?&=%+#";
dynamic_background_opacity = "yes";
background_blur = 2;
# Window size
remember_window_size = false; remember_window_size = false;
allow_remote_control = true;
initial_window_width = 640; initial_window_width = 640;
initial_window_height = 400; initial_window_height = 400;
repaint_delay = 15;
# Bell input_delay = 3;
visual_bell_duration = "0.0"; # flash the screen for this duration when bell occurs visual_bell_duration = "0.0";
enable_audio_bell = false; # disable audio bells url_style = "double";
open_url_with = "default";
# Misc confirm_os_window_close = 0;
update_check_interval = 0; # don't check for updates, we have a package manager... enable_audio_bell = false;
confirm_os_window_close = 0; # don't ask for confirmation if window gets closed window_padding_width = 15;
scrollback_lines = 10000; # Capture up to 10k lines for scrolling window_margin_width = 10;
select_by_word_characters = ":@-./_~?&=%+#"; # chars considered part of word when double clicking
}; };
keybindings = { keybindings = {
"ctrl+c" = "copy_or_interrupt"; "ctrl+c" = "copy_or_interrupt";

View file

@ -16,7 +16,6 @@ in {
]; ];
in { in {
monospace = [ monospace = [
"Monaspace Krypton"
"Source Code Pro Medium" "Source Code Pro Medium"
"Source Han Mono" "Source Han Mono"
] ]
@ -48,7 +47,6 @@ in {
# programming fonts # programming fonts
sarasa-gothic sarasa-gothic
source-code-pro source-code-pro
monaspace
# desktop fonts # desktop fonts
corefonts # MS fonts corefonts # MS fonts