From 4acb073b7c30ff6bd930447f035e885763e95a91 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 22 Jan 2024 10:04:21 -0600 Subject: [PATCH] alacritty does toml now.... --- .../alacritty/alacritty.toml | 27 +++++++ .../alacritty/alacritty.yml | 47 ----------- .../alacritty/catppuccin-mocha.toml | 75 ++++++++++++++++++ .../alacritty/catppuccin-mocha.yml | 78 ------------------- 4 files changed, 102 insertions(+), 125 deletions(-) create mode 100644 home/private_dot_config/alacritty/alacritty.toml delete mode 100644 home/private_dot_config/alacritty/alacritty.yml create mode 100644 home/private_dot_config/alacritty/catppuccin-mocha.toml delete mode 100644 home/private_dot_config/alacritty/catppuccin-mocha.yml diff --git a/home/private_dot_config/alacritty/alacritty.toml b/home/private_dot_config/alacritty/alacritty.toml new file mode 100644 index 0000000..b6cb65b --- /dev/null +++ b/home/private_dot_config/alacritty/alacritty.toml @@ -0,0 +1,27 @@ +import = ["/home/daylin/.config/alacritty/catppuccin-mocha.toml"] + +[cursor.style] +blinking = "Never" +shape = "Underline" + +[env] +TERM = "xterm-256color" + +[font] +size = 12 + +[font.normal] +family = "MonoLisa Nerd Font" + +[window] +decorations = "None" +dynamic_padding = true +title = "Alacritty" + +[window.dimensions] +columns = 90 +lines = 45 + +[window.padding] +x = 10 +y = 10 diff --git a/home/private_dot_config/alacritty/alacritty.yml b/home/private_dot_config/alacritty/alacritty.yml deleted file mode 100644 index 7c87ef4..0000000 --- a/home/private_dot_config/alacritty/alacritty.yml +++ /dev/null @@ -1,47 +0,0 @@ -import: - - ~/.config/alacritty/catppuccin-mocha.yml - -env: - TERM: xterm-256color - -window: - dimensions: - columns: 90 - lines: 45 - - # Window position (changes require restart) - # Blank space added around the window in pixels. This padding is scaled - # by DPI and the specified value is always added at both opposing sides. - padding: - x: 10 - y: 10 - - dynamic_padding: true - - # Values for `decorations`: - # - full: Borders and title bar - # - none: Neither borders nor title bar - # - decorations: full - title: Alacritty - -# Font configuration -font: - normal: - family: "MonoLisa Nerd Font" - size: 12 - -cursor: - style: - # Values for `shape`: - # - ▇ Block - # - _ Underline - # - | Beam - shape: Underline - - # Values for `blinking`: - # - Never: Prevent the cursor from ever blinking - # - Off: Disable blinking by default - # - On: Enable blinking by default - # - Always: Force the cursor to always blink - blinking: Never diff --git a/home/private_dot_config/alacritty/catppuccin-mocha.toml b/home/private_dot_config/alacritty/catppuccin-mocha.toml new file mode 100644 index 0000000..1dfe857 --- /dev/null +++ b/home/private_dot_config/alacritty/catppuccin-mocha.toml @@ -0,0 +1,75 @@ +[colors.primary] +background = "#1E1E2E" +foreground = "#CDD6F4" +dim_foreground = "#CDD6F4" +bright_foreground = "#CDD6F4" + +[colors.cursor] +text = "#1E1E2E" +cursor = "#F5E0DC" + +[colors.vi_mode_cursor] +text = "#1E1E2E" +cursor = "#B4BEFE" + +[colors.search.matches] +foreground = "#1E1E2E" +background = "#A6ADC8" + +[colors.search.focused_match] +foreground = "#1E1E2E" +background = "#A6E3A1" + +[colors.footer_bar] +foreground = "#1E1E2E" +background = "#A6ADC8" + +[colors.hints.start] +foreground = "#1E1E2E" +background = "#F9E2AF" + +[colors.hints.end] +foreground = "#1E1E2E" +background = "#A6ADC8" + +[colors.selection] +text = "#1E1E2E" +background = "#F5E0DC" + +[colors.normal] +black = "#45475A" +red = "#F38BA8" +green = "#A6E3A1" +yellow = "#F9E2AF" +blue = "#89B4FA" +magenta = "#F5C2E7" +cyan = "#94E2D5" +white = "#BAC2DE" + +[colors.bright] +black = "#585B70" +red = "#F38BA8" +green = "#A6E3A1" +yellow = "#F9E2AF" +blue = "#89B4FA" +magenta = "#F5C2E7" +cyan = "#94E2D5" +white = "#A6ADC8" + +[colors.dim] +black = "#45475A" +red = "#F38BA8" +green = "#A6E3A1" +yellow = "#F9E2AF" +blue = "#89B4FA" +magenta = "#F5C2E7" +cyan = "#94E2D5" +white = "#BAC2DE" + +[[colors.indexed_colors]] +index = 16 +color = "#FAB387" + +[[colors.indexed_colors]] +index = 17 +color = "#F5E0DC" diff --git a/home/private_dot_config/alacritty/catppuccin-mocha.yml b/home/private_dot_config/alacritty/catppuccin-mocha.yml deleted file mode 100644 index e787352..0000000 --- a/home/private_dot_config/alacritty/catppuccin-mocha.yml +++ /dev/null @@ -1,78 +0,0 @@ -colors: - primary: - background: "#1E1E2E" # base - foreground: "#CDD6F4" # text - # Bright and dim foreground colors - dim_foreground: "#CDD6F4" # text - bright_foreground: "#CDD6F4" # text - - # Cursor colors - cursor: - text: "#1E1E2E" # base - cursor: "#F5E0DC" # rosewater - vi_mode_cursor: - text: "#1E1E2E" # base - cursor: "#B4BEFE" # lavender - - # Search colors - search: - matches: - foreground: "#1E1E2E" # base - background: "#A6ADC8" # subtext0 - focused_match: - foreground: "#1E1E2E" # base - background: "#A6E3A1" # green - footer_bar: - foreground: "#1E1E2E" # base - background: "#A6ADC8" # subtext0 - - # Keyboard regex hints - hints: - start: - foreground: "#1E1E2E" # base - background: "#F9E2AF" # yellow - end: - foreground: "#1E1E2E" # base - background: "#A6ADC8" # subtext0 - - # Selection colors - selection: - text: "#1E1E2E" # base - background: "#F5E0DC" # rosewater - - # Normal colors - normal: - black: "#45475A" # surface1 - red: "#F38BA8" # red - green: "#A6E3A1" # green - yellow: "#F9E2AF" # yellow - blue: "#89B4FA" # blue - magenta: "#F5C2E7" # pink - cyan: "#94E2D5" # teal - white: "#BAC2DE" # subtext1 - - # Bright colors - bright: - black: "#585B70" # surface2 - red: "#F38BA8" # red - green: "#A6E3A1" # green - yellow: "#F9E2AF" # yellow - blue: "#89B4FA" # blue - magenta: "#F5C2E7" # pink - cyan: "#94E2D5" # teal - white: "#A6ADC8" # subtext0 - - # Dim colors - dim: - black: "#45475A" # surface1 - red: "#F38BA8" # red - green: "#A6E3A1" # green - yellow: "#F9E2AF" # yellow - blue: "#89B4FA" # blue - magenta: "#F5C2E7" # pink - cyan: "#94E2D5" # teal - white: "#BAC2DE" # subtext1 - - indexed_colors: - - { index: 16, color: "#FAB387" } - - { index: 17, color: "#F5E0DC" }