diff options
Diffstat (limited to '.config/nvim/after/ftplugin/html.lua')
| -rw-r--r-- | .config/nvim/after/ftplugin/html.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/html.lua b/.config/nvim/after/ftplugin/html.lua new file mode 100644 index 0000000..b249bcc --- /dev/null +++ b/.config/nvim/after/ftplugin/html.lua @@ -0,0 +1,9 @@ +local setlocal = vim.opt_local + +setlocal.expandtab = true +setlocal.tabstop = 2 +setlocal.softtabstop = 2 +setlocal.shiftwidth = 2 + +vim.keymap.set("", "<F6>", ":!firefox %<CR>", { noremap = true, silent = true }) +setlocal.formatoptions:remove { "o" } |
