diff options
| -rw-r--r-- | alacritty.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml new file mode 100644 index 0000000..4401e14 --- /dev/null +++ b/alacritty.yml @@ -0,0 +1,45 @@ +env: + TERM: xterm-256color-italic + +window: + decorations: none + +font: + normal: + family: Dank Mono + italic: + style: Italic + bold_italic: + style: Italic + size: 16 + +draw_bold_text_with_bright_colors: true + +colors: + primary: + foreground: '#eeeeee' + background: '#3e3937' + selection: + text: '#000000' + background: '#c1ddff' + normal: + black: '#888888' + red: '#ff004d' + green: '#55ff55' + yellow: '#ffec27' + blue: '#5555ff' + magenta: '#ff55ff' + cyan: '#55ffff' + white: '#c7c7c7' + bright: + black: '#aaaaaa' + red: '#ff5555' + green: '#83ff83' + yellow: '#ffff55' + blue: '#6f6fff' + magenta: '#ff82ff' + cyan: '#77ffff' + white: '#feffff' + +cursor: + style: Block |