blob: 6b4b99dc811f5eef3d207468a8778504e8316499 (
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
|
-- https://wezfurlong.org/wezterm/
--
-- ln ~/.vim/wezterm.lua ~/.config/wezterm/
--
-- on X11, add to ~/.Xresources
--
-- Xcursor.theme:DMZ-Black
--
-- or Adwaita or whatever is the theme you use.
--
-- Reload with: xrdb ~/.Xresources
--
local wezterm = require 'wezterm';
return {
font = wezterm.font("JetBrains Mono Medium"),
font_size = 10.0,
color_scheme = "Gruvbox Dark",
hide_tab_bar_if_only_one_tab = true,
window_padding = {
left = "1cell",
right = "1cell",
top = "0.5cell",
bottom = 0,
}
}
|