blob: 9db2ab2e60a65628c1943f057bd38efa1d6b937c (
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 -merge ~/.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,
}
}
|