diff options
Diffstat (limited to 'lua/config/autocmds.lua')
-rw-r--r-- | lua/config/autocmds.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lua/config/autocmds.lua b/lua/config/autocmds.lua index 0e6fe51..a45b9ae 100644 --- a/lua/config/autocmds.lua +++ b/lua/config/autocmds.lua @@ -86,10 +86,3 @@ autocmd({ "BufNewFile", "BufRead" }, { -- Automatically resize panes autocmd("VimResized", { pattern = "*", command = "wincmd =" }) - -vim.api.nvim_create_autocmd("BufEnter", { - callback = function() - vim.opt.formatoptions:remove({ "c", "r", "o" }) - end, - desc = "Disable New Line Comment", -}) |