15 lines
361 B
Lua
15 lines
361 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
config.color_scheme = 'Catppuccin Mocha'
|
|
config.font = wezterm.font('Iosevka Nerd Font Mono')
|
|
config.font_size = 15.0
|
|
|
|
config.default_cursor_style = 'SteadyBar'
|
|
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
config.use_fancy_tab_bar = false
|
|
config.tab_bar_at_bottom = true
|
|
|
|
return config
|