Selaa lähdekoodia

add alacritty config for windows - will look at merging later

Daniel Sheffield 1 kuukausi sitten
vanhempi
sitoutus
3e45d83549
2 muutettua tiedostoa jossa 68 lisäystä ja 0 poistoa
  1. 38 0
      alacritty-win/alacritty.toml
  2. 30 0
      alacritty/.config/alacritty/themes/autumn.toml

+ 38 - 0
alacritty-win/alacritty.toml

@@ -0,0 +1,38 @@
+[general]
+import = [
+	"C:/Users/DanielS/git/dotfiles/alacritty/.config/alacritty/themes/autumn.toml"
+]
+
+[font]
+size = 9.5
+
+[font.bold]
+family = "RobotoMono Nerd Font"
+style = "Bold"
+
+[font.bold_italic]
+family = "RobotoMono Nerd Font"
+style = "Bold Italic"
+
+[font.italic]
+family = "RobotoMono Nerd Font"
+style = "Italic"
+
+[font.normal]
+family = "RobotoMono Nerd Font"
+style = "Regular"
+
+[colors]
+draw_bold_text_with_bright_colors = true
+
+#[terminal.shell]
+#program = "C:/system32/WindowsPowerShell/v1.0/powershell.exe"
+#program = "wsl.exe"
+#args = ["-d", "Debian"]
+
+[keyboard]
+
+[[keyboard.bindings]]
+action = "CreateNewWindow"
+key = "X"
+mods = "Control|Shift"

+ 30 - 0
alacritty/.config/alacritty/themes/autumn.toml

@@ -0,0 +1,30 @@
+# From: https://github.com/yorickpeterse/Autumn.vim/blob/master/colors/autumn.vim
+
+[colors.primary]
+foreground = "#F3F2CC"
+background = "#232323"
+
+[colors.cursor]
+text = "#232323"
+cursor = "#F3F2CC"
+
+[colors.normal]
+black = "#212121"
+red = "#F05E48"
+green = "#99be70"
+yellow = "#FAD566"
+blue = "#86c1b9"
+magenta = "#cfba8b"
+cyan = "#72a59e"
+white = "#c8c8c8"
+
+[colors.bright]
+black = "#404040"
+red = "#F05E48"
+green = "#99be70"
+yellow = "#ffff9f"
+blue = "#86c1b9"
+magenta = "#cfba8b"
+cyan = "#72a59e"
+white = "#e8e8e8"
+