aboutsummaryrefslogtreecommitdiff
path: root/.alacritty.yml
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-14 13:06:17 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-14 13:06:17 +0200
commit5828534933ffd5ca23c6e47b7c12a4a2637e01f0 (patch)
tree4385c66fabdaf2dd71a8f7cc2fabca49fb2896dd /.alacritty.yml
parent10d80f8d2858de6da4a73073e3f68dfd269d6cff (diff)
downloaddotfiles-5828534933ffd5ca23c6e47b7c12a4a2637e01f0.tar.gz
dotfiles-5828534933ffd5ca23c6e47b7c12a4a2637e01f0.tar.bz2
dotfiles-5828534933ffd5ca23c6e47b7c12a4a2637e01f0.zip
Added vim functions to help with boilerplate in c++ files
Diffstat (limited to '.alacritty.yml')
-rw-r--r--.alacritty.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.alacritty.yml b/.alacritty.yml
new file mode 100644
index 0000000..ddfce65
--- /dev/null
+++ b/.alacritty.yml
@@ -0,0 +1,43 @@
+#############
+# alacritty #
+#############
+
+# font
+font:
+ size: 9
+ normal:
+ family: Fira Code
+
+
+ offset:
+ x: 0
+ y: 0
+
+# colorscheme (Dracula)
+colors:
+ # Default colors
+ primary:
+ background: '#282a36'
+ foreground: '#f8f8f2'
+
+ # Normal colors
+ normal:
+ black: '#000000'
+ red: '#ff5555'
+ green: '#50fa7b'
+ yellow: '#f1fa8c'
+ blue: '#caa9fa'
+ magenta: '#ff79c6'
+ cyan: '#8be9fd'
+ white: '#bfbfbf'
+
+ # Bright colors
+ bright:
+ black: '#575b70'
+ red: '#ff6e67'
+ green: '#5af78e'
+ yellow: '#f4f99d'
+ blue: '#caa9fa'
+ magenta: '#ff92d0'
+ cyan: '#9aedfe'
+ white: '#e6e6e6'