summaryrefslogtreecommitdiff
path: root/alacritty/alacritty.yml
blob: b3af705210d2ff1e5a61c11e677d999f06365066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import:
  - ~/.config/alacritty/extra.yml

env:
  TERM: xterm-256color  # Work will legacy applications and ssh

window:
  title: Terminal
  dynamic_title: true

  class:
    instance: Alacritty
    general: st  # Show as st in window manager because that's what i'm used to

  dynamic_padding: true

font:
  normal:
    family: JetBrainsMonoNL Nerd Font Mono
  size: 12

colors:
  primary:
    background: "#101010"
    foreground: "#ffffff"

  normal:
    black:   "#101010"
    red:     "#ed1207"
    green:   "#2bb500"
    yellow:  "#fc9700"
    blue:    "#1578c1"
    magenta: "#b14ff7"
    cyan:    "#00c4a3"
    white:   "#ffffff"

  bright:
    black:   "#7f7f7f"
    red:     "#ed1207"
    green:   "#2bb500"
    yellow:  "#fc9700"
    blue:    "#1578c1"
    magenta: "#b14ff7"
    cyan:    "#00c4a3"
    white:   "#ffffff"

cursor:
  style:
    blinking: Never

mouse_bindings:
  - { mouse: Right, action: PasteSelection }