aboutsummaryrefslogtreecommitdiff
path: root/.alacritty.toml
diff options
context:
space:
mode:
Diffstat (limited to '.alacritty.toml')
-rw-r--r--.alacritty.toml46
1 files changed, 46 insertions, 0 deletions
diff --git a/.alacritty.toml b/.alacritty.toml
new file mode 100644
index 0000000..9ba36fa
--- /dev/null
+++ b/.alacritty.toml
@@ -0,0 +1,46 @@
+import = [
+ "~/.setup/solarized_dark.toml"
+]
+
+[bell]
+duration = 0
+
+[cursor]
+style = "Block"
+unfocused_hollow = true
+
+[font]
+size = 9
+
+[font.bold]
+family = "Source Code Pro"
+style = "Bold"
+
+[font.italic]
+family = "Source Code Pro"
+style = "Medium Italic"
+
+[font.normal]
+family = "Source Code Pro"
+style = "Medium"
+
+[[keyboard.bindings]]
+action = "Paste"
+key = "V"
+mods = "Control|Shift"
+
+[[keyboard.bindings]]
+action = "Copy"
+key = "C"
+mods = "Control|Shift"
+
+[scrolling]
+history = 100000
+
+[window.dimensions]
+columns = 100
+lines = 85
+
+[window.padding]
+x = 1
+y = 0