summaryrefslogtreecommitdiff
path: root/home/alacritty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/alacritty.nix')
-rw-r--r--home/alacritty.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/home/alacritty.nix b/home/alacritty.nix
new file mode 100644
index 0000000..7a40b67
--- /dev/null
+++ b/home/alacritty.nix
@@ -0,0 +1,64 @@
+{
+ window = {
+ decorations = "none";
+ dynamic_title = false;
+ };
+
+ font = {
+ normal = {
+ family = "Hack";
+ style = "Regular";
+ };
+
+ bold = {
+ family = "Hack";
+ style = "Bold";
+ };
+
+ italic = {
+ family = "Hack";
+ style = "Italic";
+ };
+
+ bold_italic = {
+ family = "Hack";
+ style = "Bold Italic";
+ };
+
+ size = 17.0;
+ };
+
+ colors = {
+ primary = {
+ background = "#000000";
+ foreground = "#ffffff";
+ };
+
+ selection = {
+ text = "CellForeground";
+ background = "CellForeground";
+ };
+
+ normal = {
+ black = "#000000";
+ red = "#cc6666";
+ green = "#b5bd68";
+ yellow = "#f0c674";
+ blue = "#81a2be";
+ magenta = "#b294bb";
+ cyan = "#8abeb7";
+ white = "#ffffff";
+ };
+
+ bright = {
+ black = "#000000";
+ red = "#d54e53";
+ green = "#b9ca4a";
+ yellow = "#e7c547";
+ blue = "#7aa6da";
+ magenta = "#c397d8";
+ cyan = "#70c0b1";
+ white = "#ffffff";
+ };
+ };
+}