-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wezterm.lua
More file actions
25 lines (19 loc) · 873 Bytes
/
.wezterm.lua
File metadata and controls
25 lines (19 loc) · 873 Bytes
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
-- Pull in the wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
-- config.color_scheme = "Gruvbox (Gogh)"
config.color_scheme = "Dracula"
config.font_size = 13.0
-- Bypass tmux mouse reporting when CMD is held (enables Cmd+click on links)
config.bypass_mouse_reporting_modifiers = "CMD"
-- Keybindings
config.keys = {
{ key = "Backspace", mods = "CMD", action = wezterm.action.SendKey({ key = "u", mods = "CTRL" }) },
{ key = "LeftArrow", mods = "CMD", action = wezterm.action.SendKey({ key = "a", mods = "CTRL" }) },
{ key = "RightArrow", mods = "CMD", action = wezterm.action.SendKey({ key = "e", mods = "CTRL" }) },
}
-- and finally, return the configuration to wezterm
return config