2022-10-13 01:05:38 +02:00
|
|
|
local opts = function(desc)
|
|
|
|
return { desc = desc, buffer = true }
|
|
|
|
end
|
|
|
|
|
2022-12-27 20:45:43 +01:00
|
|
|
vim.keymap.set("n", "<leader>lf", ":source %<cr>", opts("Run [l]ua [f]ile "))
|
2022-10-13 01:05:38 +02:00
|
|
|
vim.keymap.set("n", "<leader>ls", function()
|
|
|
|
local path = vim.api.nvim_buf_get_name(0)
|
|
|
|
local status, M = pcall(dofile, path)
|
|
|
|
|
|
|
|
if status then
|
|
|
|
if M ~= nil then
|
|
|
|
if type(M.setup) == "function" then
|
|
|
|
M.setup()
|
|
|
|
print("M.setup() executed succesfully!")
|
|
|
|
else
|
|
|
|
print("Module does not return a setup function")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print("Module returned nil")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print("Cannot import current file :(")
|
|
|
|
end
|
|
|
|
end, opts("Run .setup() in current file"))
|
|
|
|
|