Adds wezterm config as home manager module
This commit is contained in:
parent
98f4a6679e
commit
8d604f9278
9 changed files with 358 additions and 0 deletions
20
home/modules/wezterm/config/overrides.lua
Normal file
20
home/modules/wezterm/config/overrides.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
local wezterm = require("wezterm")
|
||||
local hn = wezterm.hostname()
|
||||
local helpers = require("helpers")
|
||||
|
||||
local M = {}
|
||||
|
||||
function M.apply_to_config(config)
|
||||
--if hn == "macbook.digital-h.de" then
|
||||
--end
|
||||
|
||||
if hn == "dnsc-desktop" then
|
||||
config.font = wezterm.font("Victor Mono", { weight = "DemiBold" })
|
||||
config.font_size = 14
|
||||
config.window_decorations = "RESIZE"
|
||||
config.window_padding = helpers.get_padding(18, 6)
|
||||
config.window_background_opacity = 1
|
||||
end
|
||||
end
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue