1
0
Fork 0

doom: font; alacritty: migrate to toml

This commit is contained in:
Von Random 2023-12-28 16:24:53 +02:00
parent 964e6dd2af
commit f25d5077b0
3 changed files with 58 additions and 48 deletions

View file

@ -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)

View file

@ -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

View file

@ -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 }