Rebuilding config

This commit is contained in:
Ian
2026-06-29 22:59:52 +02:00
commit 9a7fa39f63
25 changed files with 1849 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
local M = {}
M.set_port = function(port)
default_port = '7070'
if port ~= nil then
default_port = port
end
return default_port
end
M.start = function(port)
default_port = M.set_port(port)
-- Create autocmd for execute cmd when autosave
end
M.file_saved = function()
local ouput = vim.fn.system('ls -l')
print(output)
end
return M