diff options
| author | Hsieh Chin Fan <typebrook@gmail.com> | 2022-06-27 13:27:47 +0800 |
|---|---|---|
| committer | Hsieh Chin Fan <typebrook@gmail.com> | 2022-06-27 13:27:47 +0800 |
| commit | 4453cc0908626ab8a3850facd06916078a596f14 (patch) | |
| tree | 0ad2979c61048dccfde8d22948f345eb1ba01520 /alacritty/alacritty.yml | |
| parent | 606e58cf51eee32315ed3bca2ef518e2b7782864 (diff) | |
Update
Diffstat (limited to 'alacritty/alacritty.yml')
| -rw-r--r-- | alacritty/alacritty.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml new file mode 100644 index 0000000..de119ba --- /dev/null +++ b/alacritty/alacritty.yml | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | ## Copyright (C) 2020-2021 Aditya Shakya <adi1090x@gmail.com> | ||
| 2 | ## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3 | ||
| 3 | |||
| 4 | ## Configuration for Alacritty, the GPU enhanced terminal emulator. | ||
| 5 | ## It's a very basic and simple config file, for full configuration... | ||
| 6 | ## See, /usr/share/doc/alacritty/example/alacritty.yml | ||
| 7 | |||
| 8 | ## Import files (Colors, Fonts, Etc) | ||
| 9 | import: | ||
| 10 | - ~/.config/alacritty/colors.yml | ||
| 11 | - ~/.config/alacritty/fonts.yml | ||
| 12 | |||
| 13 | ## Set environment variables | ||
| 14 | env: | ||
| 15 | TERM: alacritty | ||
| 16 | WINIT_X11_SCALE_FACTOR: '1.0' | ||
| 17 | |||
| 18 | ## Terminal window settings | ||
| 19 | window: | ||
| 20 | dimensions: | ||
| 21 | columns: 82 | ||
| 22 | lines: 25 | ||
| 23 | |||
| 24 | padding: | ||
| 25 | x: 12 | ||
| 26 | y: 12 | ||
| 27 | |||
| 28 | decorations: full | ||
| 29 | startup_mode: Windowed | ||
| 30 | dynamic_title: true | ||
| 31 | |||
| 32 | ## scrolling | ||
| 33 | history: 10000 | ||
| 34 | multiplier: 3 | ||
| 35 | |||
| 36 | ## Background opacity | ||
| 37 | opacity: 1.0 | ||
| 38 | |||
| 39 | ## Cursor | ||
| 40 | cursor: | ||
| 41 | style: | ||
| 42 | shape: Block | ||
| 43 | blinking: On | ||
| 44 | |||
| 45 | unfocused_hollow: false | ||
| 46 | |||
| 47 | ## Live config reload | ||
| 48 | live_config_reload: true | ||