mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
add macos weezterm config
This commit is contained in:
22
wezterm/macos/wezterm.lua
Normal file
22
wezterm/macos/wezterm.lua
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.font = wezterm.font("JetBrainsMono Nerd Font")
|
||||||
|
|
||||||
|
-- ui
|
||||||
|
--[[ config.initial_rows = 50 ]]
|
||||||
|
--[[ config.initial_cols = 198 ]]
|
||||||
|
config.window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
}
|
||||||
|
config.window_decorations = "RESIZE"
|
||||||
|
config.window_background_opacity = 0.97
|
||||||
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
config.color_scheme = "Catppuccin Mocha"
|
||||||
|
config.font_size = 16
|
||||||
|
|
||||||
|
return config
|
Reference in New Issue
Block a user