diff options
| author | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-12-11 23:33:16 -0800 |
|---|---|---|
| committer | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-12-11 23:33:16 -0800 |
| commit | 487d64163c59fa3de79b5ff1abf303475395c4a2 (patch) | |
| tree | 6339b3c8bbf7bdfe10e8c006c9cfbae9f66f527e /etc/alacritty/alacritty.yml | |
| parent | 88de5bcf9b1598c5ada352d1f3b724423bf7e6ad (diff) | |
Restructure entire home directory
The new XDG base directories will resemble the Filesystem Hierarchy
Standard on Linux or the FreeBSD/OpenBSD directory structure. Refer to
the FHS or hier(7).
XDG user directories are defined in $XDG_CONFIG_HOME/user-dirs.dirs.
Diffstat (limited to 'etc/alacritty/alacritty.yml')
| -rw-r--r-- | etc/alacritty/alacritty.yml | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/etc/alacritty/alacritty.yml b/etc/alacritty/alacritty.yml new file mode 100644 index 0000000..7c43cb8 --- /dev/null +++ b/etc/alacritty/alacritty.yml @@ -0,0 +1,71 @@ +# Alacritty configuration + +# Window properties + +window: + padding: + x: 8 + y: 8 + title: Alacritty + class: + instance: Alacritty + general: Alacritty + +# Scrolling + +scrolling: + history: 100000 + multiplier: 8 + +# Appearance + +font: + size: 12 + + normal: + family: Iosevka + style: Regular + + bold: + family: Iosevka + style: Bold + + italic: + family: Iosevka + style: Italic + +colors: + primary: + background: '#101010' + foreground: '#ebdbb2' + + cursor: + text: '#202020' + cursor: '#fbf1c7' + + normal: + black: '#202020' + red: '#fa1d48' + green: '#5c991f' + yellow: '#d6ac20' + blue: '#497287' + magenta: '#6a5db0' + cyan: '#6a9e7f' + white: '#d0d0d0' + + bright: + black: '#404040' + red: '#fa345f' + green: '#72ba29' + yellow: '#fac32a' + blue: '#859da6' + magenta: '#958ad4' + cyan: '#80bf93' + white: '#f0f0f0' + +background_opacity: 0.9 + +cursor: + style: Block + unfocused_hollow: true + blink_interval: 750 |
