{ pkgs , ... }: { programs.kitty = { enable = true; font.name = "FiraCode Nerd Font Mono"; font.size = 11; settings = { # Font settings bold_font = "FiraCode Nerd Font Mono Bold"; italic_font = "FiraCode Nerd Font Mono Light"; bold_italic_font = "auto"; # Cursor Settings cursor_shape = "block"; # Scrollback settings scrollback_lines = 10000; wheel_scroll_multiplier = 3; touch_scroll_multiplier = 2; scrollback_pager = "${pkgs.page}"; # Mouse settings mouse_hide_wait = "0.5"; open_url_with = "default"; strip_trailing_spaces = "smart"; focus_follows_mouse = true; # Perf settings repaint_delay = 16; sync_to_monitor = true; # Terminal Bell settings enable_audio_bell = false; # Window settings hide_window_decorations = true; # Tab Bar settings tab_bar_edge = "bottom"; tab_bar_margin_width = 0; tab_bar_margin_height = "0 0"; tab_bar_style = "powerline"; tab_bar_min_tabs = 2; # Dracula color scheme # foreground = "\#f8f8f2"; # background = "\#282a36"; # selection_foreground = "\#ffffff"; # selection_background = "\#44475a"; # url_color = "\#8be9fd"; # color0 = "\#21222c"; # color1 = "\#ff5555"; # color2 = "\#50fa7b"; # color3 = "\#f1fa8c"; # color4 = "\#bd93f9"; # color5 = "\#ff79c6"; # color6 = "\#8be9fd"; # color7 = "\#f8f8f2"; # color8 = "\#6272a4"; # color9 = "\#ff6e6e"; # color10 = "\#69ff94"; # color11 = "\#ffffa5"; # color12 = "\#d6acff"; # color13 = "\#ff92df"; # color14 = "\#a4ffff"; # color15 = "\#ffffff"; # cursor = "\#f8f8f2"; # cursor_text_color = "background"; # active_tab_foreground = "\#282a36"; # active_tab_background = "\#f8f8f2"; # inactive_tab_foreground = "\#282a36"; # inactive_tab_background = "\#6272a4"; # mark1_foreground = "\#282a36"; # mark1_background = "\#ff5555"; # Tokyo Night color scheme foreground = "\#c0caf5"; background = "\#1a1b26"; selection_foreground = "\#c0caf5"; selection_background = "\#33467c"; url_color = "\#73daca"; color0 = "\#15161e"; color1 = "\#f7768e"; color2 = "\#9ece6a"; color3 = "\#e0af68"; color4 = "\#7aa2f7"; color5 = "\#bb9af7"; color6 = "\#7dcfff"; color7 = "\#a9b1d6"; color8 = "\#414868"; color9 = "\#f7768e"; color10 = "\#93ce6a"; color11 = "\#e0af68"; color12 = "\#7aa2f7"; color13 = "\#bb9af7"; color14 = "\#7dcfff"; color15 = "\#c0caf5"; color16 = "\#ff9e64"; color17 = "\#db4b4b"; cursor = "\#c0caf5"; cursor_text_color = "background"; active_tab_foreground = "\#1f2335"; active_tab_background = "\#7aa2f7"; inactive_tab_foreground = "\#545c7e"; inactive_tab_background = "\#292e42"; mark1_foreground = "\#282a36"; mark1_background = "\#ff5555"; # Advanced shell = "fish"; editor = "${pkgs.neovim}"; allow_remote_control = "socket-only"; listen_on = "unix:/tmp/mykitty"; update_check_interval = 0; allow_hyperlinks = true; term = "xterm-kitty"; linux_display_server = "wayland"; }; }; }