From 39d57113e048dd2905f467b576ab10ceb069a5aa Mon Sep 17 00:00:00 2001 From: pro100ton Date: Sun, 17 Nov 2024 20:35:08 +0300 Subject: [PATCH] Add alacritty config and my theme --- alacritty/alacritty.toml | 29 +++++++++++++++++++++++++++++ alacritty/gruvbox_t0xa.toml | 25 +++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 alacritty/alacritty.toml create mode 100644 alacritty/gruvbox_t0xa.toml diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..bccd35d --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,29 @@ +import = [ + # "~/.config/alacritty/themes/themes/monokai_pro.toml" + # "~/.config/alacritty/themes/themes/dracula_plus.toml" + # "~/.config/alacritty/catppuccin-mocha.toml" + # "~/.config/alacritty/themes/gruvbox_material.toml" + # "~/.config/alacritty/themes/gruvbox_t0xa.toml" + "~/.config/alacritty/themes/gruvbox_t0xa.toml" +] +# import = [ +# # uncomment the flavour you want below: +# # "~/.config/alacritty/catppuccin-latte.toml" +# # "~/.config/alacritty/catppuccin-frappe.toml" +# # "~/.config/alacritty/catppuccin-macchiato.toml" +# ] + +[env] +TERM = "xterm-256color" +[window] +padding.x = 10 +padding.y = 10 + +decorations = "Buttonless" + +option_as_alt = "Both" + +[font] +normal = {family = "RobotoMono Nerd Font", style = "Regular"} +size = 10 + diff --git a/alacritty/gruvbox_t0xa.toml b/alacritty/gruvbox_t0xa.toml new file mode 100644 index 0000000..c459674 --- /dev/null +++ b/alacritty/gruvbox_t0xa.toml @@ -0,0 +1,25 @@ +# Colors (Gruvbox Material Dark Medium) + +[colors.primary] +background = '#282828' +foreground = '#dfbf8e' + +[colors.normal] +black = '#665c54' +red = '#eb5149' +green = '#77c752' +yellow = '#e78a4e' +blue = '#4fe3c2' +magenta = '#d3869b' +cyan = '#89b482' +white = '#dfbf8e' + +[colors.bright] +black = '#928374' +red = '#ea6962' +green = '#6fcc43' +yellow = '#e3a84e' +blue = '#7daea3' +magenta = '#d3869b' +cyan = '#89b482' +white = '#dfbf8e'