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

@@ -0,0 +1,25 @@
local wezterm = require("wezterm")
local actions = wezterm.action
local module = {}
module.keys = {
{
key = "o",
mods = "LEADER",
action = actions.SplitPane({
direction = "Right",
command = {
args = {
"/bin/zsh",
"-l",
"-c",
"/Users/jirayu/.opencode/bin/opencode",
},
},
size = { Percent = 50 },
}),
},
}
return module