mirror of
https://github.com/mitchell/dotfiles.git
synced 2026-08-10 08:09:35 +00:00
refactor: reorganize into packages for modular use
This commit is contained in:
parent
e33c60c7aa
commit
fd32e1431c
57 changed files with 0 additions and 66 deletions
31
wezterm/.wezterm.lua
Normal file
31
wezterm/.wezterm.lua
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
local wezterm = require("wezterm")
|
||||
local config = wezterm.config_builder()
|
||||
local act = wezterm.action
|
||||
|
||||
local is_darwin = function()
|
||||
return wezterm.target_triple:find("darwin") ~= nil
|
||||
end
|
||||
|
||||
if is_darwin() then
|
||||
config.default_prog = { "/opt/homebrew/bin/fish", "-l" }
|
||||
end
|
||||
|
||||
config.window_decorations = "RESIZE"
|
||||
|
||||
config.color_scheme = 'Kanagawa (Gogh)'
|
||||
|
||||
config.window_background_opacity = is_darwin() and 0.85 or 0.95
|
||||
|
||||
config.font_size = is_darwin() and 14 or 11
|
||||
|
||||
config.tab_bar_at_bottom = true
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
|
||||
config.window_padding = {
|
||||
left = 2,
|
||||
right = 2,
|
||||
top = 2,
|
||||
bottom = 2,
|
||||
}
|
||||
|
||||
return config
|
||||
Loading…
Add table
Add a link
Reference in a new issue