all repos

dotfiles @ 0aafc4d8d92a7079d77861fe62b858e77b32ade3

my dotfiles

config/alacritty.yml (view raw)

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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
env:
  TERM: xterm-256color

window:
  title: Alacritty
  dynamic_padding: false
  padding:
    x: 6
    y: 6

  class:
    instance: Alacritty
    general: Alacritty

scrolling:
  history: 5000
  auto_scroll: true

tabspaces: 4
live_config_reload: true
alt_send_esc: true
background_opacity: 0.9
dynamic_title: false
decorations: none
draw_bold_text_with_bright_colors: true

cursor:
  # ▇ Block
  # _ Underline
  # | Beam
  style: Underline
  unfocused_hollow: true

font:
  size: 12.0
  normal:
    family: JetBrains Mono
    style: Regular
  bold:
    family: JetBrains Mono
    style: Bold
  italic:
    family: JetBrains Mono
    style: Italic
  bold_italic:
    family: JetBrains Mono
    style: Bold Italic
  offset:
    x: 0
    y: 1

schemes:
  vscode: &vscode
    primary:
     background: '#1e1e1e'
     foreground: '#d4d4d4'
    cursor:
      text: CellBackground
      cursor: '#d4d4d4'
    normal:
      black:   '#1e1e1e'
      red:     '#f44747'
      green:   '#608b4e'
      yellow:  '#dcdcaa'
      blue:    '#569cd6'
      magenta: '#c678dd'
      cyan:    '#56b6c2'
      white:   '#d4d4d4'
    bright:
      black:   '#545454'
      red:     '#f44747'
      green:   '#608b4e'
      yellow:  '#dcdcaa'
      blue:    '#569cd6'
      magenta: '#c678dd'
      cyan:    '#56b6c2'
      white:   '#d4d4d4'

colors: *vscode

key_bindings:
  - { key: V,         mods: Control|Shift, action: Paste            }
  - { key: C,         mods: Control|Shift, action: Copy             }
  - { key: Key0,      mods: Control,       action: ResetFontSize    }
  - { key: Plus,      mods: Control,       action: IncreaseFontSize }
  - { key: Minus,     mods: Control,       action: DecreaseFontSize }
  - { key: F11,       mods: None,          action: ToggleFullscreen }