21 lines
459 B
Lua
21 lines
459 B
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
-- Defining lotus as a color scheme
|
|
config.color_schemes = {
|
|
['Kanagawa Lotus (Gogh)'] = require("colors/kanagawa-lotus"),
|
|
}
|
|
|
|
-- Colors
|
|
local wave = 'Kanagawa (Gogh)'
|
|
local dragon = 'Kanagawa Dragon (Gogh)'
|
|
local lotus = 'Kanagawa Lotus (Gogh)'
|
|
|
|
config.window_decorations = "RESIZE"
|
|
config.enable_tab_bar = false
|
|
config.font_size = 18.0
|
|
config.color_scheme = wave
|
|
|
|
|
|
return config
|