-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_wezterm.lua
More file actions
28 lines (16 loc) · 788 Bytes
/
dot_wezterm.lua
File metadata and controls
28 lines (16 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
local wezterm = require 'wezterm'
local config = wezterm.config_builder and wezterm.config_builder() or {}
--------------------------------------------------------------------------------
-- Visuals
--------------------------------------------------------------------------------
config.color_scheme = "Dracula"
config.font = wezterm.font("Cascadia Code")
config.font_size = 14.0
--------------------------------------------------------------------------------
-- Keybinds
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Misc
--------------------------------------------------------------------------------
config.default_cwd = wezterm.home_dir
return config