summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-05-19 00:08:31 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-05-19 00:08:31 +0200
commit368e9ad74c7893a0e300489a71ea09de53334f84 (patch)
tree2fdd21f05d22302cc87d9d5573260a202538a909
parenteb70c19665d981a147d37c5011e1dfbc3fcf817c (diff)
Migrate alacritty to toml
-rw-r--r--alacritty/alacritty/alacritty.toml58
1 files changed, 58 insertions, 0 deletions
diff --git a/alacritty/alacritty/alacritty.toml b/alacritty/alacritty/alacritty.toml
new file mode 100644
index 0000000..91c7765
--- /dev/null
+++ b/alacritty/alacritty/alacritty.toml
@@ -0,0 +1,58 @@
+[colors.bright]
+black = "#6272a4"
+blue = "#d6acff"
+cyan = "#a4ffff"
+green = "#69ff94"
+magenta = "#ff92df"
+red = "#ff6e6e"
+white = "#ffffff"
+yellow = "#ffffa5"
+
+[colors.normal]
+black = "#21222c"
+blue = "#bd93f9"
+cyan = "#8be9fd"
+green = "#50fa7b"
+magenta = "#ff79c6"
+red = "#ff5555"
+white = "#f8f8f2"
+yellow = "#f1fa8c"
+
+[colors.primary]
+background = "#282a36"
+foreground = "#f8f8f2"
+
+[cursor.style]
+blinking = "On"
+shape = "Block"
+
+[font]
+size = 8.0
+
+[font.bold]
+family = "B612 Mono"
+style = "Bold"
+
+[font.bold_italic]
+family = "B612 Mono"
+style = "Bold Italic"
+
+[font.italic]
+family = "B612 Mono"
+style = "Italic"
+
+[font.normal]
+family = "B612 Mono"
+style = "Regular"
+
+[[keyboard.bindings]]
+action = "CreateNewWindow"
+key = "Return"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "Paste"
+key = "Paste"
+
+[scrolling]
+history = 100000