feat(nvim): add keybind to run luafile nvim invocation

This commit is contained in:
Price Hiller 2023-08-18 23:23:52 -05:00
parent 4a1b695ba4
commit dfa7fd5f20
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1,3 +1,8 @@
vim.opt_local.tabstop = 4
vim.opt_local.shiftwidth = 4
vim.opt_local.expandtab = true
vim.keymap.set("n", "<leader>fr", ":luafile %<CR>", {
buffer = true,
silent = true
})