diff --git a/nvim/lua/config/core/options.lua b/nvim/lua/config/core/options.lua index 7b4afd6..a65ec02 100644 --- a/nvim/lua/config/core/options.lua +++ b/nvim/lua/config/core/options.lua @@ -36,3 +36,9 @@ opt.showbreak = '++' opt.breakindent = true opt.linebreak = true opt.termguicolors = true + +-- Remove autoformatting of +-- 't' text using textwidth +-- 'c' comments using textwidth +opt.formatoptions:remove('t') +opt.formatoptions:remove('c')