Skip to content

Instantly share code, notes, and snippets.

@destinio
Created February 12, 2023 18:56
Show Gist options
  • Save destinio/a43567888c94aef35249047095b20c3a to your computer and use it in GitHub Desktop.
Save destinio/a43567888c94aef35249047095b20c3a to your computer and use it in GitHub Desktop.
Basic nvim-lua functions and things
function Pr(...)
print(vim.inspect(...))
end
vim.api.nvim_create_user_command("LRun", function()
vim.cmd("write | so %")
end, {})
vim.keymap.set("n", "lr", ":LRun<cr>", { silent = true })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment