Dotfiles V.1.2.0

This commit is contained in:
2025-12-14 22:40:50 +01:00
parent af9d88c05f
commit 9d1aa2be86
50 changed files with 582 additions and 1667 deletions

View File

@@ -9,6 +9,8 @@ local config = wezterm.config_builder()
local sessionizer = require("plugins/sessionizer")
local tabline = require("plugins/tabline")
local smart_splits = require("plugins/smart_splits")
local gemini = require("plugins/gemini")
local opencode = require("plugins/opencode")
-- This will hold the actions
@@ -211,6 +213,14 @@ for _, key in ipairs(smart_splits.keys) do
table.insert(config.keys, key)
end
for _, key in ipairs(gemini.keys) do
table.insert(config.keys, key)
end
for _, key in ipairs(opencode.keys) do
table.insert(config.keys, key)
end
-- Font Config
config.font = wezterm.font({
@@ -232,4 +242,10 @@ config.use_fancy_tab_bar = false
config.send_composed_key_when_left_alt_is_pressed = true
--Variables
config.set_environment_variables = {
PATH = os.getenv("PATH"),
}
return config