75 lines
2.8 KiB
Plaintext
75 lines
2.8 KiB
Plaintext
|
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
|
||
|
|
||
|
#: Fonts {{{
|
||
|
|
||
|
#: kitty has very powerful font management. You can configure
|
||
|
#: individual font faces and even specify special fonts for particular
|
||
|
#: characters.
|
||
|
|
||
|
#:font_family monospace
|
||
|
font_family CaskaydiaCove Nerd Font Mono
|
||
|
bold_font CaskaydiaCove Nerd Font Mono Bold
|
||
|
italic_font CaskaydiaCove Nerd Font Mono Italic
|
||
|
bold_italic_font CaskaydiaCove Nerd Font Mono Medium Italic
|
||
|
|
||
|
#: You can specify different fonts for the bold/italic/bold-italic
|
||
|
#: variants. To get a full list of supported fonts use the `kitty
|
||
|
#: list-fonts` command. By default they are derived automatically, by
|
||
|
#: the OSes font system. Setting them manually is useful for font
|
||
|
#: families that have many weight variants like Book, Medium, Thick,
|
||
|
#: etc. For example::
|
||
|
|
||
|
#: font_family Operator Mono Book
|
||
|
#: bold_font Operator Mono Medium
|
||
|
#: italic_font Operator Mono Book Italic
|
||
|
#: bold_italic_font Operator Mono Medium Italic
|
||
|
|
||
|
font_size 13.0
|
||
|
|
||
|
#: Font size (in pts)
|
||
|
|
||
|
adjust_line_height 0
|
||
|
adjust_column_width 1
|
||
|
|
||
|
#: Change the size of each character cell kitty renders. You can use
|
||
|
#: either numbers, which are interpreted as pixels or percentages
|
||
|
#: (number followed by %), which are interpreted as percentages of the
|
||
|
#: unmodified values. You can use negative pixels or percentages less
|
||
|
#: than 100% to reduce sizes (but this might cause rendering
|
||
|
#: artifacts).
|
||
|
|
||
|
# symbol_map U+E0A0-U+E0A2,U+E0B0-U+E0B3 PowerlineSymbols
|
||
|
|
||
|
#: Map the specified unicode codepoints to a particular font. Useful
|
||
|
#: if you need special rendering for some symbols, such as for
|
||
|
#: Powerline. Avoids the need for patched fonts. Each unicode code
|
||
|
#: point is specified in the form U+<code point in hexadecimal>. You
|
||
|
#: can specify multiple code points, separated by commas and ranges
|
||
|
#: separated by hyphens. symbol_map itself can be specified multiple
|
||
|
#: times. Syntax is::
|
||
|
|
||
|
#: symbol_map codepoints Font Family Name
|
||
|
|
||
|
disable_ligatures never
|
||
|
|
||
|
#: Choose how you want to handle multi-character ligatures. The
|
||
|
#: default is to always render them. You can tell kitty to not render
|
||
|
#: them when the cursor is over them by using cursor to make editing
|
||
|
#: easier, or have kitty never render them at all by using always, if
|
||
|
#: you don't like them. The ligature strategy can be set per-window
|
||
|
#: either using the kitty remote control facility or by defining
|
||
|
#: shortcuts for it in kitty.conf, for example::
|
||
|
|
||
|
#: map alt+1 disable_ligatures_in active always
|
||
|
#: map alt+2 disable_ligatures_in all never
|
||
|
#: map alt+3 disable_ligatures_in tab cursor
|
||
|
|
||
|
box_drawing_scale 0.001, 1, 1.5, 2
|
||
|
|
||
|
#: Change the sizes of the lines used for the box drawing unicode
|
||
|
#: characters These values are in pts. They will be scaled by the
|
||
|
#: monitor DPI to arrive at a pixel value. There must be four values
|
||
|
#: corresponding to thin, normal, thick, and very thick lines.
|
||
|
|
||
|
#: }}}
|