Fix ~ folders, wezterm config

This commit is contained in:
2024-08-19 17:09:32 +02:00
parent e01f21e55a
commit 2bb01a3bf5
2 changed files with 15 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
config.color_scheme = 'AdventureTime'
-- and finally, return the configuration to wezterm
return config