diff options
Diffstat (limited to '.config/alacritty')
| -rw-r--r-- | .config/alacritty/alacritty.toml | 61 | ||||
| -rw-r--r-- | .config/alacritty/alacritty.yml | 61 |
2 files changed, 61 insertions, 61 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..f839d1a --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,61 @@ +[colors.bright] +black = "0x000000" +blue = "0x87afd7" +cyan = "0x87afd7" +green = "0xb9dc92" +magenta = "0xdfafdf" +red = "0xd78787" +white = "0xd0d0d0" +yellow = "0xffffaf" + +[colors.footer_bar] +background = "0x4e4e4e" +foreground = "0xd0d0d0" + +[colors.normal] +black = "0x000000" +blue = "0x87afd7" +cyan = "0x87afd7" +green = "0xb9dc92" +magenta = "0xdfafdf" +red = "0xd78787" +white = "0xd0d0d0" +yellow = "0xffffaf" + +[colors.primary] +background = "0x1c1c1c" +foreground = "0xd0d0d0" + +[colors.search.matches] +background = "0x875f87" +foreground = "0xd0d0d0" + +[font] +size = 10.0 + +[font.bold] +family = "Droid Sans Mono" + +[font.bold_italic] +family = "Droid Sans Mono" + +[font.italic] +family = "Droid Sans Mono" + +[font.normal] +family = "Droid Sans Mono" + +[font.offset] +y = 2 + +[[keyboard.bindings]] +action = "FirstOccupied" +key = "A" +mode = "Vi" +mods = "Control" + +[[keyboard.bindings]] +action = "Last" +key = "E" +mode = "Vi" +mods = "Control" diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml deleted file mode 100644 index 20ec5dc..0000000 --- a/.config/alacritty/alacritty.yml +++ /dev/null @@ -1,61 +0,0 @@ -# Configuration for Alacritty, the GPU enhanced terminal emulator. -# Check the default file in: https://github.com/alacritty/alacritty/blob/master/alacritty.yml - -# Colors based on `soria` (https://github.com/mssola/soria). -colors: - primary: - background: '0x1c1c1c' - foreground: '0xd0d0d0' - - normal: - black: '0x000000' - red: '0xd78787' - green: '0xb9dc92' - yellow: '0xffffaf' - blue: '0x87afd7' - magenta: '0xdfafdf' - cyan: '0x87afd7' - white: '0xd0d0d0' - - bright: - black: '0x000000' - red: '0xd78787' - green: '0xb9dc92' - yellow: '0xffffaf' - blue: '0x87afd7' - magenta: '0xdfafdf' - cyan: '0x87afd7' - white: '0xd0d0d0' - - search: - matches: - background: '0x875f87' - foreground: '0xd0d0d0' - - footer_bar: - background: '0x4e4e4e' - foreground: '0xd0d0d0' - -## -# Using Droid Sans Mono out of tradition at this point, with a bit of an offset -# so it doesn't feel too cluttered. -font: - normal: - family: Droid Sans Mono - bold: - family: Droid Sans Mono - italic: - family: Droid Sans Mono - bold_italic: - family: Droid Sans Mono - - size: 10.0 - - offset: - y: 2 - -## -# Adapt some bindings to the ones I have from GNU Emacs. -key_bindings: - - { key: A, mods: Control, mode: Vi, action: FirstOccupied } - - { key: E, mods: Control, mode: Vi, action: Last } |
