diff options
-rw-r--r-- | .config/alacritty.toml | 83 | ||||
-rw-r--r-- | .config/alacritty.yml | 83 |
2 files changed, 83 insertions, 83 deletions
diff --git a/.config/alacritty.toml b/.config/alacritty.toml new file mode 100644 index 0000000..8674566 --- /dev/null +++ b/.config/alacritty.toml @@ -0,0 +1,83 @@ +[colors] +draw_bold_text_with_bright_colors = true + +[colors.bright] +black = "0x888888" +blue = "0x79b8ff" +cyan = "0x00ffff" +green = "0x00ff00" +magenta = "0xff00ff" +red = "0xff0000" +white = "0xffffff" +yellow = "0xffff00" + +[colors.cursor] +cursor = "0xffffff" +text = "0xaaaaaa" + +[colors.normal] +black = "0x000000" +blue = "0x2188ff" +cyan = "0x00ffff" +green = "0x00ff00" +magenta = "0xff00ff" +red = "0xff0000" +white = "0xffffff" +yellow = "0xffff00" + +[colors.primary] +background = "0x0a0a0a" +foreground = "0xdddddd" + +[font] +size = 8.0 + +[font.bold] +family = "DejaVuSansM Nerd Font Mono" +style = "Bold" + +[font.bold_italic] +family = "DejaVuSansM Nerd Font Mono" +style = "Bold Oblique" + +[font.italic] +family = "DejaVuSansM Nerd Font Mono" +style = "Oblique" + +[font.normal] +family = "DejaVuSansM Nerd Font Mono" +style = "Regular" + +[hints] +alphabet = "aoeuidhtns" + +[[hints.enabled]] +command = "xdg-open" +hyperlinks = true +post_processing = true +regex = "(mailto|http|https):[^\u0000-\u001F\u007F-<>\"\\s{-}\\^⟨⟩`]+" + +[hints.enabled.binding] +key = "Tab" +mods = "Control|Command" + +[hints.enabled.mouse] +enabled = true +mods = "Command" + +[selection] +semantic_escape_chars = ''' !@#$%^&*(){}[]'",.<>/?=+-\|`~;:''' + +[shell] +args = ["--login"] +program = "/bin/bash" + +[window] +alt_send_esc = true +opacity = 0.86 +option_as_alt = "Both" +resize_increments = true + +[window.dimensions] +columns = 80 +lines = 37 diff --git a/.config/alacritty.yml b/.config/alacritty.yml deleted file mode 100644 index b449f9d..0000000 --- a/.config/alacritty.yml +++ /dev/null @@ -1,83 +0,0 @@ -shell: - program: /bin/bash - args: - - '--login' - -window: - dimensions: - columns: 80 - lines: 37 - opacity: 0.86 - resize_increments: true - option_as_alt: Both - alt_send_esc: true - -font: - normal: - family: 'DejaVuSansM Nerd Font Mono' - style: 'Regular' - bold: - family: 'DejaVuSansM Nerd Font Mono' - style: 'Bold' - italic: - family: 'DejaVuSansM Nerd Font Mono' - style: 'Oblique' - bold_italic: - family: 'DejaVuSansM Nerd Font Mono' - style: 'Bold Oblique' - size: 8.0 - -# theme: high-contrast, plus the blues from github-dark, from -# https://github.com/alacritty/alacritty-theme -colors: - # Default colors - primary: - background: '0x0a0a0a' - foreground: '0xdddddd' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0xaaaaaa' - cursor: '0xffffff' - - # Normal colors - normal: - black: '0x000000' - red: '0xff0000' - green: '0x00ff00' - yellow: '0xffff00' - blue: '0x2188ff' - magenta: '0xff00ff' - cyan: '0x00ffff' - white: '0xffffff' - - # Bright colors - bright: - black: '0x888888' - red: '0xff0000' - green: '0x00ff00' - yellow: '0xffff00' - blue: '0x79b8ff' - magenta: '0xff00ff' - cyan: '0x00ffff' - white: '0xffffff' - -draw_bold_text_with_bright_colors: true - -selection: - semantic_escape_chars: " !@#$%^&*(){}[]'\",.<>/?=+-\\|`~;:" - -hints: - alphabet: "aoeuidhtns" - enabled: - - regex: "(mailto|http|https):[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+" - hyperlinks: true - command: xdg-open - post_processing: true - mouse: - enabled: true - mods: Command - binding: - key: Tab - mods: Control|Command - |