-
Notifications
You must be signed in to change notification settings - Fork 0
/
.wezterm.lua
36 lines (28 loc) · 1.01 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
-- 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.font = wezterm.font("FiraCode Nerd Font Mono")
config.font_size = 12
config.enable_tab_bar = false
config.window_decorations = "TITLE | RESIZE"
config.colors = {
foreground = "#FBF1C7",
background = "#282828",
cursor_bg = "#EBDBB2",
cursor_border = "#D5C4A1",
cursor_fg = "#1D2021",
selection_bg = "#BDAE93",
selection_fg = "#1D2021",
ansi = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#8300ff", "#a277ff", "#24EAF7", "#24EAF7" },
brights = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#A277FF", "#a277ff", "#24EAF7", "#24EAF7" },
}
config.window_background_opacity = 0.9
-- Windows setup
if wezterm.target_triple == "x86_64-pc-windows-msvc" then
config.default_prog = { "powershell.exe", "-nol" }
end
-- and finally, return the configuration to wezterm
return config