mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
22 lines
505 B
Lua
22 lines
505 B
Lua
-- vim: foldmethod=marker foldmarker=#region,#endregion
|
|
-- $DOTFILES/tools/wezterm/wezterm.lua
|
|
-- Date: 2024-12-22
|
|
-- Author: js0ny
|
|
|
|
local wezterm = require("wezterm")
|
|
local color = require("color")
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
-- TODO: OS light/dark theme detection
|
|
-- local function detect_theme() end
|
|
|
|
-- config.font = 'FiraCode Nerd Font'
|
|
|
|
require("tab")(config)
|
|
require("appearance")(config)
|
|
require("keymaps")(config)
|
|
require("launcher")(config)
|
|
require("misc")(config)
|
|
|
|
return config
|