dotfiles/foot/foot.ini
Alan Orth 2b88aa7fa8
foot/foot.ini: Use Cascadia Mono font
This is the new font from Microsoft in VSCode. I got the font names
from `fc-list` and tested them by printing some bold, italic, and
bold italic text:

    $ ansi()          { echo -e "\e[${1}m${*:2}\e[0m"; }
    $ bold()          { ansi 1 "$@"; }
    $ italic()        { ansi 3 "$@"; }
    $ echo "Some $(bold bold text) next to some $(italic italic text) and some $(bold $(italic bold italic text))."

See: https://askubuntu.com/questions/528928/how-to-do-underline-bold-italic-strikethrough-color-background-and-size-i
2021-10-18 13:44:54 +03:00

40 lines
867 B
INI

# -*- conf -*-
# 2021-01-20: avoid errors on remote systems when using less etc when the foot
# terminfo is not available.
term=xterm-256color
# Use fc-list to check fonts and styles
font=Cascadia Mono:style=Roman:size=12
font-bold=Cascadia Mono:style=SemiBold:size=12
font-italic=Cascadia Mono:style=Italic:size=12
# I don't know where any bold italic is used, but this should work if I ever
# find any.
font-bold-italic=Cascadia Mono:style=Bold Italic:size=12
# Selenized dark
[cursor]
color = 103c48 53d6c7
[colors]
background= 103c48
foreground= adbcbc
regular0= 184956
regular1= fa5750
regular2= 75b938
regular3= dbb32d
regular4= 4695f7
regular5= f275be
regular6= 41c7b9
regular7= 72898f
bright0= 2d5b69
bright1= ff665c
bright2= 84c747
bright3= ebc13d
bright4= 58a3ff
bright5= ff84cd
bright6= 53d6c7
bright7= cad8d9