I’ll put the exact files in GitHub later. I use Kitty with the Gruvbox theme and some custom fonts, lots of bold, and transparency. Kitty is awesome cause it comes with a TON of theme pre-loaded.

What are you guys using?

  • bahmanm@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I use Emacs (and libvterm) for almost all my terminal’y needs 😅

    In rare cases where I need a terminal outside Emacs, I use Alacritty.

    Here’s the relevant config from ~/.config/alacritty/alacritty.yml:

    font:
      normal:
        family: Noto Sans Mono Medium
    
      bold:
        style: Bold
        family: Noto Sans Mono
    
      size: 9.0
    
    # the venerable Solarized Light color theme (https://ethanschoonover.com/solarized/)
    colors:
      primary:
        background: '0xfdf6e3'
        foreground: '0x9d9683'
    
      normal:
        black:   '0x073642'
        red:     '0xdc322f'
        green:   '0x859900'
        yellow:  '0xb58900'
        blue:    '0x268bd2'
        magenta: '0xd33682'
        cyan:    '0x2aa198'
        white:   '0xeee8d5'
    
      bright:
        black:   '0x002b36'
        red:     '0xcb4b16'
        green:   '0x586e75'
        yellow:  '0x657b83'
        blue:    '0x839496'
        magenta: '0x6c71c4'
        cyan:    '0x93a1a1'
        white:   '0xfdf6e3'