summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVon Random <von@vdrandom.org>2023-12-28 16:24:53 +0200
committerVon Random <von@vdrandom.org>2023-12-28 16:24:53 +0200
commitf25d5077b0ea86e699a67424d3bb8f246136ea42 (patch)
tree2caa167185061b31354db04d85b71c79165e0b41
parent964e6dd2af0478b692048d8d5834d80bc80c86d1 (diff)
doom: font; alacritty: migrate to toml
-rw-r--r--cli/.doom.d/config.el2
-rw-r--r--gui/.config/alacritty/alacritty.toml57
-rw-r--r--gui/.config/alacritty/alacritty.yml47
3 files changed, 58 insertions, 48 deletions
diff --git a/cli/.doom.d/config.el b/cli/.doom.d/config.el
index 2f09945..ea30ed2 100644
--- a/cli/.doom.d/config.el
+++ b/cli/.doom.d/config.el
@@ -1,7 +1,7 @@
(setq user-full-name "Von Random"
user-mail-address "von@mechanus.net")
-(setq doom-font (font-spec :family "VascadiaMod" :size 14)
+(setq doom-font (font-spec :family "Fantasque Sans Mono" :size 16)
doom-variable-pitch-font (font-spec :family "PT Sans"))
(setq doom-theme 'doom-gruvbox)
diff --git a/gui/.config/alacritty/alacritty.toml b/gui/.config/alacritty/alacritty.toml
new file mode 100644
index 0000000..70f1002
--- /dev/null
+++ b/gui/.config/alacritty/alacritty.toml
@@ -0,0 +1,57 @@
+[colors.bright]
+black = "0x002b36"
+blue = "0x839496"
+cyan = "0x93a1a1"
+green = "0x586e75"
+magenta = "0x6c71c4"
+red = "0xcb4b16"
+white = "0xfdf6e3"
+yellow = "0x657b83"
+
+[colors.cursor]
+cursor = "0xcb4b16"
+
+[colors.normal]
+black = "0x073642"
+blue = "0x268bd2"
+cyan = "0x2aa198"
+green = "0x859900"
+magenta = "0xd33682"
+red = "0xdc322f"
+white = "0xeee8d5"
+yellow = "0xb58900"
+
+[colors.primary]
+background = "0xfdf6e3"
+foreground = "0x657b83"
+
+[colors.selection]
+background = "0xeee8d5"
+text = "CellForeground"
+
+[cursor.style]
+shape = "Block"
+
+[font]
+builtin_box_drawing = true
+size = 16
+
+[font.normal]
+family = "FantasqueSansM Nerd Font"
+
+[[keyboard.bindings]]
+action = "Paste"
+key = "V"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "Copy"
+key = "C"
+mods = "Alt"
+
+[[mouse.bindings]]
+action = "PasteSelection"
+mouse = "Middle"
+
+[scrolling]
+history = 15000
diff --git a/gui/.config/alacritty/alacritty.yml b/gui/.config/alacritty/alacritty.yml
deleted file mode 100644
index cfa8b35..0000000
--- a/gui/.config/alacritty/alacritty.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-scrolling:
- history: 15000
-
-font:
- builtin_box_drawing: true
- normal:
- family: FantasqueSansM Nerd Font
- size: 15
-
-colors:
- primary:
- foreground: '0x657b83'
- background: '0xfdf6e3'
- cursor:
- cursor: '0xcb4b16'
- selection:
- text: CellForeground
- background: '0xeee8d5'
- normal:
- black: '0x073642'
- red: '0xdc322f'
- green: '0x859900'
- yellow: '0xb58900'
- blue: '0x268bd2'
- magenta: '0xd33682'
- cyan: '0x2aa198'
- white: '0xeee8d5'
- bright:
- black: '0x002b36'
- red: '0xcb4b16'
- green: '0x586e75'
- yellow: '0x657b83'
- blue: '0x839496'
- magenta: '0x6c71c4'
- cyan: '0x93a1a1'
- white: '0xfdf6e3'
-
-cursor:
- style:
- shape: Block
-
-mouse_bindings:
- - { mouse: Middle, action: PasteSelection }
-
-key_bindings:
- - { key: V, mods: Alt, action: Paste }
- - { key: C, mods: Alt, action: Copy }