Add wezterm configuration
This commit is contained in:
parent
3176e0b936
commit
6c9dc5a0f3
2 changed files with 27 additions and 0 deletions
0
wezterm/.luarc.json
Normal file
0
wezterm/.luarc.json
Normal file
27
wezterm/wezterm.lua
Normal file
27
wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
local wezterm = require "wezterm"
|
||||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
|
||||
local padding = 2
|
||||
config.window_padding = {
|
||||
left = (padding * 1) .. "cell",
|
||||
right = (padding * 1) .. "cell",
|
||||
top = (padding * .4) .. "cell",
|
||||
bottom = (padding * .4) .. "cell"
|
||||
}
|
||||
|
||||
config.font = wezterm.font "Fira Code"
|
||||
|
||||
local darkfile = os.getenv("HOME") .. "/.dark"
|
||||
|
||||
wezterm.add_to_config_reload_watch_list(darkfile)
|
||||
|
||||
if io.open(darkfile) then
|
||||
config.color_scheme = "Apprentice (base16)"
|
||||
else
|
||||
config.color_scheme = "Atelier Plateau Light (base16)"
|
||||
end
|
||||
|
||||
return config
|
Loading…
Reference in a new issue