From 03b7a8397e72e6458cb4695795b7d4972a398435 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Wed, 13 Mar 2024 19:43:50 -0400 Subject: [PATCH] Added alacritty configuration --- .config/alacritty/alacritty.toml | 68 ++++++++++++++++++++++++++++++++ .config/alacritty/alacritty.yml | 67 +++++++++++++++++++++++++++++++ .config/alacritty/visor.toml | 4 ++ .config/alacritty/visor.yml | 6 +++ 4 files changed, 145 insertions(+) create mode 100644 .config/alacritty/alacritty.toml create mode 100644 .config/alacritty/alacritty.yml create mode 100644 .config/alacritty/visor.toml create mode 100644 .config/alacritty/visor.yml diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..0b1b52e --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,68 @@ +[colors] +draw_bold_text_with_bright_colors = false + +[colors.cursor] +cursor = "0xc5c8c6" +text = "0x1d1f21" + +[colors.primary] +background = "0x1d1f21" +foreground = "0xc5c8c6" + +[colors.normal] +black = "0x1d1f21" +blue = "0x81a2be" +cyan = "0x8abeb7" +green = "0xb5bd68" +magenta = "0xb294bb" +red = "0xcc6666" +white = "0xc5c8c6" +yellow = "0xf0c674" + +[colors.bright] +black = "0x969896" +blue = "0xb4b7b4" +cyan = "0xa3685a" +#green = "0x282a2e" +magenta = "0xe0e0e0" +red = "0xde935f" +white = "0xffffff" +yellow = "0x373b41" + +[cursor.style] +blinking = "On" +shape = "Beam" + +[cursor.vi_mode_style] +blinking = "On" +shape = "Block" + +[font] +size = 12.0 + +[font.bold] +family = "Hack Nerd Font" +style = "Bold" + +[font.normal] +family = "Hack Nerd Font" + +[[keyboard.bindings]] +Key = "C" +action = "Copy" +mods = "Super" + +[[keyboard.bindings]] +Key = "V" +action = "Paste" +mods = "Super" + +[[keyboard.bindings]] +Key = "F11" +action = "ToggleFullscreen" + +[selection] +save_to_clipboard = false + +[window] +opacity = 0.98 diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..0e2f957 --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,67 @@ +font: + normal: + family: Hack Nerd Font + bold: + family: Hack Nerd Font + style: Bold + size: 12.0 + +window: + opacity: 0.98 + #decorations: none + +colors: + primary: + background: '0x1d1f21' + foreground: '0xc5c8c6' + +# Base16 Tomorrow Night - alacritty color config +# Chris Kempson (http://chriskempson.com) +#colors: +# # Default colors +# primary: +# background: '0x1d1f21' +# foreground: '0xc5c8c6' + +# Normal colors +normal: + black: '0x1d1f21' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xc5c8c6' + +# Bright colors +bright: + black: '0x969896' + red: '0xde935f' + green: '0x282a2e' + yellow: '0x373b41' + blue: '0xb4b7b4' + magenta: '0xe0e0e0' + cyan: '0xa3685a' + white: '0xffffff' + +draw_bold_text_with_bright_colors: false + +selection: + save_to_clipboard: false + +# Colors the cursor will use if `custom_cursor_colors` is true +cursor: + text: '0x1d1f21' + cursor: '0xc5c8c6' + style: + shape: Beam + blinking: On + +vi_mode_style: Block + +key_bindings: + - { Key: C, mods: Super, action: Copy } + - { Key: V, mods: Super, action: Paste } + - { Key: F11, action: ToggleFullscreen } + diff --git a/.config/alacritty/visor.toml b/.config/alacritty/visor.toml new file mode 100644 index 0000000..881edbb --- /dev/null +++ b/.config/alacritty/visor.toml @@ -0,0 +1,4 @@ +import = ["/home/psi-jack/.config/alacritty/alacritty.toml"] + +[window] +decorations = "none" diff --git a/.config/alacritty/visor.yml b/.config/alacritty/visor.yml new file mode 100644 index 0000000..fcdab7a --- /dev/null +++ b/.config/alacritty/visor.yml @@ -0,0 +1,6 @@ +import: + - ~/.config/alacritty/alacritty.yml + +window: + decorations: none +