20 lines
515 B
Lua
20 lines
515 B
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
config.default_prog = { "/usr/local/bin/tmux" }
|
|
|
|
config.color_scheme = 'Catppuccin Mocha'
|
|
config.font = wezterm.font("JetBrainsMonoNL Nerd Font Mono", { weight = "DemiBold" })
|
|
config.font_size = 13.0
|
|
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
|
|
config.initial_cols = 120
|
|
config.initial_rows = 50
|
|
config.window_background_opacity = 0.9
|
|
|
|
-- Disable detecting password input as we use tmux
|
|
config.detect_password_input = false
|
|
|
|
return config
|