diff options
Diffstat (limited to 'alacritty/alacritty.toml')
| -rw-r--r-- | alacritty/alacritty.toml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..671cc5f --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,49 @@ +# Default colors +[colors.primary] +background = '#111111' +foreground = '#EEEEEE' + +# Cursor colors +[colors.cursor] +text = '#EBEBEB' +cursor = '#1f97ea' + +# Normal colors +[colors.normal] +black = '#0d0d0d' +red = '#FF301B' +green = '#0ec248' +yellow = '#FFC620' +blue = '#3966ad' +magenta = '#8763B8' +cyan = '#21DEEF' +white = '#EBEBEB' + +# Bright colors +[colors.bright] +black = '#6D7070' +red = '#FF4352' +green = '#B8E466' +yellow = '#FFD750' +blue = '#1BA6FA' +magenta = '#A578EA' +cyan = '#73FBF1' +white = '#FEFEF8' + +[window] +opacity = 0.7 + +# Vi mode +[[keyboard.bindings]] +key = "Space" +mods = "Control|Alt" +action = "ToggleViMode" + +[colors.vi_mode_cursor] +cursor = '#FF0000' +text = '#111111' + +[colors.selection] +text = '#111111' +background = '#931b1b' + |
