feat(nvim): set run key for html filetype

This commit is contained in:
Price Hiller 2023-08-26 07:44:10 -05:00
parent 3db8f28629
commit 344a8e9d54
No known key found for this signature in database

View File

@ -1,2 +1,7 @@
vim.opt_local.tabstop = 2
vim.opt_local.shiftwidth = 2
vim.keymap.set("n", "<leader>fr", ":!xdg-open %<CR>", {
buffer = true,
silent = true
})