diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/user/opts.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/user/opts.lua b/lua/user/opts.lua index 90fe0f2..468b7af 100644 --- a/lua/user/opts.lua +++ b/lua/user/opts.lua @@ -23,6 +23,14 @@ vim.cmd([[ xnoremap @ :<C-U>execute "noautocmd '<,'>norm! " . v:count1 . "@" . getcharstr()<cr> ]]) +-- Stop annoying auto commenting on new lines +vim.cmd [[ + augroup annoying + au! + au BufEnter * set fo-=c fo-=r fo-=o + augroup end +]] + -- Environment --vim.opt.shell = "zsh" -- vim.o.updatetime = 250 |
