Update dotfiles (2026-03-07 22:52:54)

This commit is contained in:
Zacharias-Brohn
2026-03-07 22:52:54 +01:00
parent 778d724f9d
commit 170d015464
8 changed files with 225 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
local M = {}
function M.setup(config, wezterm)
local smart_splits = wezterm.plugin.require("https://github.com/mrjones2014/smart-splits.nvim")
smart_splits.apply_to_config(config, {
direction_keys = { "LeftArrow", "DownArrow", "UpArrow", "RightArrow" },
modifiers = {
move = "META",
resize = "SHIFT|META",
},
log_level = "error",
})
end
return M