Advertisement
eliax1996

Untitled

Sep 11th, 2020
1,635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.36 KB | None | 0 0
  1. window:
  2.  # Window dimensions (changes require restart)
  3.   #
  4.   # Specified in number of columns/lines, not pixels. If both are zero this
  5.   # setting is ignored.
  6.   dimensions:
  7.     columns: 60
  8.     lines: 20
  9.  
  10.  
  11.   startup_mode: Windowed
  12.  
  13.  
  14. font:
  15.  # The normal (roman) font face to use.
  16.   # Style can be specified to pick a specific face.
  17.   normal:
  18.     family: "Fira Code"
  19.     # family: "Source Code Pro"
  20.     # style: Retina
  21.  
  22.   # The bold font face
  23.   bold:
  24.     family: "Fira Code"
  25.     # family: "Source Code Pro"
  26.  
  27.   # The italic font face
  28.   italic:
  29.     family: "Fira Code"
  30.     # family: "Source Code Pro"
  31.     # style: "Medium Italic"
  32.  
  33.   # Point size of the font
  34.   size: 20.0
  35.  
  36.   # Offset is the extra space around each character. offset.y can be thought of
  37.   # as modifying the linespacing, and offset.x as modifying the letter spacing.
  38.   offset:
  39.     x: 0
  40.     y: 0
  41.  
  42.   # Glyph offset determines the locations of the glyphs within their cells with
  43.   # the default being at the bottom. Increase the x offset to move the glyph to
  44.   # the right, increase the y offset to move the glyph upward.
  45.   glyph_offset:
  46.     x: 0
  47.     y: 0
  48.  
  49.   # Thin stroke font rendering (macOS only)
  50.   #
  51.   # Thin strokes are suitable for retina displays, but for non-retina you
  52.   # probably want this set to false.
  53.   #
  54.   # macOS >= 10.14.x:
  55.   #
  56.   # If the font quality on non-retina display looks bad then set
  57.   # `use_thin_strokes` to `true` and enable font smoothing by running the
  58.   # following command:
  59.   #   `defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO`
  60.   #
  61.   # This is a global setting and will require a log out or restart to take
  62.   # effect.
  63.   use_thin_strokes: true
  64.  
  65. # When true, bold text is drawn using the bright variant of colors.
  66. draw_bold_text_with_bright_colors: false
  67.  
  68.  
  69.  
  70. # Colors (Nord)
  71. colors:
  72.  # Default colors
  73.   primary:
  74.     background: '0x2E3440'
  75.     foreground: '0xD8DEE9'
  76.  
  77.   # Normal colors
  78.   normal:
  79.     black:  '0x3B4252'
  80.     red:    '0xBF616A'
  81.     green:  '0xA3BE8C'
  82.     yellow: '0xEBCB8B'
  83.     blue:   '0x81A1C1'
  84.     magenta: '0xB48EAD'
  85.     cyan:   '0x88C0D0'
  86.     white:  '0xE5E9F0'
  87.  
  88.   # Bright colors
  89.   bright:
  90.     black:  '0x4C566A'
  91.     red:    '0xBF616A'
  92.     green:  '0xA3BE8C'
  93.     yellow: '0xEBCB8B'
  94.     blue:   '0x81A1C1'
  95.     magenta: '0xB48EAD'
  96.     cyan:   '0x8FBCBB'
  97.     white:  '0xECEFF4'
  98.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement