AutoYADM commit: 2024-12-15 20:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-15 20:30:01 -05:00
parent e94f41e616
commit 4cbcabce0d
2 changed files with 10 additions and 0 deletions

View file

@ -1,2 +1,5 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
if vim.g.neovide then
require("neovide-config").setup()
end

View file

@ -0,0 +1,7 @@
local M = {}
M.setup = function(opts)
print("Setup goes here")
end
return M