From a2be2c6dade25d8ecb0b3965cb52371a7ff9a6ad Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Wed, 17 Jan 2024 12:26:52 +0530 Subject: alacritty: migrating from yml to toml Signed-off-by: Brahmajit Das --- .config/alacritty/alacritty.toml | 75 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .config/alacritty/alacritty.toml (limited to '.config/alacritty/alacritty.toml') diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..77c7598 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,75 @@ +[[colors.indexed_colors]] +color = "#b6927b" +index = 16 + +[[colors.indexed_colors]] +color = "#b98d7b" +index = 17 + +[colors.bright] +black = "#a6a69c" +blue = "#7FB4CA" +cyan = "#7AA89F" +green = "#87a987" +magenta = "#938AA9" +red = "#E46876" +white = "#c5c9c5" +yellow = "#E6C384" + +[colors.normal] +black = "#0d0c0c" +blue = "#8ba4b0" +cyan = "#8ea4a2" +green = "#8a9a7b" +magenta = "#a292a3" +red = "#c4746e" +white = "#C8C093" +yellow = "#c4b28a" + +[colors.primary] +background = "#181616" +foreground = "#c5c9c5" + +[colors.selection] +background = "#2D4F67" +foreground = "#C8C093" + +[env] +TERM = "xterm-256color" + +[font] +size = 12.0 + +[font.bold] +family = "Cartograph CF" +style = "Bold" + +[font.bold_italic] +family = "Cartograph CF" +style = "Bold Italic" + +[font.italic] +family = "Cartograph CF" +style = "Italic" + +[font.normal] +family = "Cartograph CF" +style = "Regular" + +[[hints.enabled]] +command = "xdg-open" +hyperlinks = true +post_processing = true +regex = "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-Ÿ<>\"\\s{-}\\^⟨⟩`]+" + +[hints.enabled.binding] +key = "U" +mods = "Control|Shift" + +[hints.enabled.mouse] +enabled = true +mods = "None" + +[window] +decorations = "full" +dynamic_title = true -- cgit v1.2.3