My dotfiles (written in Nix, btw!) ❄
at main 27 lines 704 B view raw
1{pkgs, ...}: { 2 programs.kitty = { 3 enable = true; 4 # themeFile = "Nord"; 5 # font = { 6 # name = "FantasqueSansM Nerd Font"; 7 # package = pkgs.nerd-fonts.fantasque-sans-mono; 8 # }; 9 settings = { 10 # TODO: Add on-click events 11 scrollback_lines = 10000; 12 enable_audio_bell = false; 13 update_check_interval = 0; 14 font_size = 16; 15 modify_font = "cell_height 110%"; 16 font_features = "+ss01"; 17 cursor_shape = "block"; 18 cursor_blink_interval = "cubic-bezier(0.7, 0, 0.84, 0)"; 19 cursor_trail = 1; 20 # background_opacity = 0.8; 21 }; 22 shellIntegration = { 23 mode = "no-cursor"; 24 enableBashIntegration = true; 25 }; 26 }; 27}