-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathwezterm.lua
49 lines (35 loc) · 1.06 KB
/
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
43
44
45
46
47
48
49
local wezterm = require("wezterm")
-- This table will hold the configuration.
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.audible_bell = "Disabled"
config.cursor_blink_ease_in = "Linear"
config.cursor_blink_ease_out = "EaseIn"
config.cursor_blink_rate = 400
config.default_cursor_style = "BlinkingBlock"
config.enable_scroll_bar = true
config.enable_wayland = false
config.hide_tab_bar_if_only_one_tab = true
config.inactive_pane_hsb = {
brightness = 0.5,
saturation = 0.5,
}
config.scrollback_lines = 9999
config.swallow_mouse_click_on_pane_focus = true
config.swallow_mouse_click_on_window_focus = true
config.window_decorations = "RESIZE"
config.window_padding = {
left = "1.5cell",
right = "1.5cell",
top = "0.5cell",
bottom = "0.5cell",
}
require("dko/typography").setup(config)
require("dko/mappings").setup(config)
require("dko/theme").setup(config)
require("dko/panes").setup()
return config