switched to dentritic pattern and cleaned up config

This commit is contained in:
2026-08-30 13:24:46 +02:00
parent 325f4a0e0c
commit 47325d4031
133 changed files with 565 additions and 1865 deletions
+15
View File
@@ -0,0 +1,15 @@
return {
new_window = function(o_path, o_title)
if o_path == nil then
o_path = vim.fn.getcwd()
end
if o_title == nil then
o_title = "neovim"
end
print(string.format("ghostty --working-directory='%s' --title='%s' -e nvim .", o_path, o_title))
return vim.fn.jobstart(string.format("ghostty --working-directory='%s' --title='%s' -e nvim .", o_path, o_title),
{ detach = true })
end
}