My Nix Configuration
1{ 2 # Font settings 3 bold_font = "BlexMono Nerd Font Bold"; 4 italic_font = "BlexMono Nerd Font Italic"; 5 bold_italic_font = "BlexMono Nerd Font Bold Italic"; 6 # Cursor Settings 7 scrollback_lines = 10000; 8 wheel_scroll_multiplier = 3; 9 touch_scroll_multiplier = 2; 10 scrollback_pager = "page"; 11 cursor_shape = "block"; 12 # Mouse settings 13 mouse_hide_wait = "0.5"; 14 open_url_with = "default"; 15 strip_trailing_spaces = "smart"; 16 focus_follows_mouse = true; 17 # Perf settings 18 repaint_delay = 16; 19 sync_to_monitor = true; 20 # Terminal Bell settings 21 enable_audio_bell = false; 22 # Window settings 23 hide_window_decorations = true; 24 # Tab Bar settings 25 tab_bar_edge = "bottom"; 26 tab_bar_margin_width = 0; 27 tab_bar_margin_height = "0 0"; 28 tab_bar_style = "powerline"; 29 tab_bar_min_tabs = 2; 30 31 shell = "fish"; 32 editor = "nvim"; 33 allow_remote_control = "socket-only"; 34 listen_on = "unix:/tmp/mykitty"; 35 update_check_interval = 0; 36 allow_hyperlinks = true; 37 shell_integration = "no-cursor"; 38 term = "xterm-kitty"; 39 remember_window_size = "no"; 40 linux_display_server = "wayland"; 41}