9 lines
218 B
Lua
9 lines
218 B
Lua
local wezterm = require 'wezterm'
|
|
local config = {}
|
|
|
|
config.color_scheme = 'OceanicNext (base16)'
|
|
config.font = wezterm.font 'FiraCode Nerd Font Mono'
|
|
config.font_size = 12
|
|
config.enable_tab_bar = false
|
|
|
|
return config
|