summaryrefslogtreecommitdiff
path: root/alacritty/alacritty.toml
diff options
context:
space:
mode:
authorTimmy Keller <tjk@tjkeller.xyz>2024-01-17 18:03:10 -0600
committerTimmy Keller <tjk@tjkeller.xyz>2024-01-17 18:03:10 -0600
commitaa7b92eb281d229386a298998586ef9687b9af1c (patch)
tree3f260f1b1a79d533120c709bc1f083a10e2f0653 /alacritty/alacritty.toml
parent2d65c8d43cc8d280ab72d93037be17715e94abbc (diff)
downloaddotconfig-aa7b92eb281d229386a298998586ef9687b9af1c.tar.xz
dotconfig-aa7b92eb281d229386a298998586ef9687b9af1c.zip
move to toml configuration
Diffstat (limited to 'alacritty/alacritty.toml')
-rw-r--r--alacritty/alacritty.toml50
1 files changed, 50 insertions, 0 deletions
diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml
new file mode 100644
index 0000000..0184272
--- /dev/null
+++ b/alacritty/alacritty.toml
@@ -0,0 +1,50 @@
+import = ["/home/timmy/.config/alacritty/extra.yml"]
+
+[colors.bright]
+black = "#7f7f7f"
+blue = "#1578c1"
+cyan = "#00c4a3"
+green = "#2bb500"
+magenta = "#b14ff7"
+red = "#ed1207"
+white = "#ffffff"
+yellow = "#fc9700"
+
+[colors.normal]
+black = "#101010"
+blue = "#1578c1"
+cyan = "#00c4a3"
+green = "#2bb500"
+magenta = "#b14ff7"
+red = "#ed1207"
+white = "#ffffff"
+yellow = "#fc9700"
+
+[colors.primary]
+background = "#101010"
+foreground = "#ffffff"
+
+[cursor.style]
+blinking = "Never"
+
+[env]
+TERM = "xterm-256color"
+
+[font]
+size = 7.25
+
+[font.normal]
+family = "JetBrainsMonoNL Nerd Font Mono"
+
+[[mouse.bindings]]
+action = "PasteSelection"
+mouse = "Right"
+
+[window]
+dynamic_padding = true
+dynamic_title = true
+title = "Terminal"
+
+[window.class]
+general = "st"
+instance = "st"