summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/alacritty/alacritty.toml31
-rw-r--r--.config/alacritty/themes/gruvbox_dark.toml30
-rw-r--r--.config/alacritty/themes/gruvbox_light.toml30
3 files changed, 91 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml
new file mode 100644
index 0000000..39671bd
--- /dev/null
+++ b/.config/alacritty/alacritty.toml
@@ -0,0 +1,31 @@
+
+[window]
+
+dimensions.columns = 140
+dimensions.lines = 40
+
+[font]
+size = 14.0
+
+normal.family = "JetBrains Mono NL"
+normal.style = "Regular"
+
+bold.family = "JetBrains Mono NL"
+bold.style = "Bold"
+
+italic.family = "JetBrains Mono NL"
+italic.style = "Italic"
+
+bold_italic.family = "JetBrains Mono NL"
+bold_italic.style = "Bold Italic"
+
+[scrolling]
+
+history = 10_000
+multiplier = 3
+
+[general]
+
+live_config_reload = true
+import = [ "~/.config/alacritty/themes/gruvbox_dark.toml", ]
+
diff --git a/.config/alacritty/themes/gruvbox_dark.toml b/.config/alacritty/themes/gruvbox_dark.toml
new file mode 100644
index 0000000..d2845cd
--- /dev/null
+++ b/.config/alacritty/themes/gruvbox_dark.toml
@@ -0,0 +1,30 @@
+# Colors (Gruvbox dark)
+
+# Default colors
+[colors.primary]
+# hard contrast background = = '#1d2021'
+background = '#282828'
+# soft contrast background = = '#32302f'
+foreground = '#ebdbb2'
+
+# Normal colors
+[colors.normal]
+black = '#282828'
+red = '#cc241d'
+green = '#98971a'
+yellow = '#d79921'
+blue = '#458588'
+magenta = '#b16286'
+cyan = '#689d6a'
+white = '#a89984'
+
+# Bright colors
+[colors.bright]
+black = '#928374'
+red = '#fb4934'
+green = '#b8bb26'
+yellow = '#fabd2f'
+blue = '#83a598'
+magenta = '#d3869b'
+cyan = '#8ec07c'
+white = '#ebdbb2'
diff --git a/.config/alacritty/themes/gruvbox_light.toml b/.config/alacritty/themes/gruvbox_light.toml
new file mode 100644
index 0000000..d2852db
--- /dev/null
+++ b/.config/alacritty/themes/gruvbox_light.toml
@@ -0,0 +1,30 @@
+# Colors (Gruvbox light)
+
+# Default colors
+[colors.primary]
+# hard contrast background = = '#f9f5d7'
+background = '#fbf1c7'
+# soft contrast background = = '#f2e5bc'
+foreground = '#3c3836'
+
+# Normal colors
+[colors.normal]
+black = '#fbf1c7'
+red = '#cc241d'
+green = '#98971a'
+yellow = '#d79921'
+blue = '#458588'
+magenta = '#b16286'
+cyan = '#689d6a'
+white = '#7c6f64'
+
+# Bright colors
+[colors.bright]
+black = '#928374'
+red = '#9d0006'
+green = '#79740e'
+yellow = '#b57614'
+blue = '#076678'
+magenta = '#8f3f71'
+cyan = '#427b58'
+white = '#3c3836'