blob: ac3aaed6b7e049f35d0f924f77546d65217c4923 (
plain)
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
29
30
31
32
|
-- https://wezfurlong.org/wezterm/
--
-- ln ~/.config/nvim/wezterm.lua ~/.config/wezterm/
-- mkdir -p ~/.config/wezterm/colors/
-- ln ~/.config/nvim/wezterm_tokyonight_storm.toml ~/.config/wezterm/colors/
--
-- on X11, add to ~/.Xresources
--
-- Xcursor.theme:DMZ-Black
--
-- or Adwaita or whatever is the theme you use.
--
-- Reload with: xrdb -merge ~/.Xresources
--
local wezterm = require 'wezterm';
return {
font = wezterm.font("JetBrains Mono Medium"),
font_size = 10.0,
custom_block_glyphs = false,
warn_about_missing_glyphs = false,
color_scheme = "Gruvbox Dark (Gogh)",
hide_tab_bar_if_only_one_tab = true,
force_reverse_video_cursor = true,
window_padding = {
left = "1cell",
right = "1cell",
top = "0.5cell",
bottom = 0,
},
check_for_updates = true
}
|