🔧 Removed md max line option

This commit is contained in:
tomit4 2025-08-12 12:56:43 -07:00
parent 6157bff435
commit e51059574b

View file

@ -33,7 +33,6 @@ vim.opt.smarttab = true
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.cindent = true vim.opt.cindent = true
vim.opt.tabstop = 4 vim.opt.tabstop = 4
vim.opt.cursorcolumn = true
-- Disable folds -- Disable folds
-- vim.g.nofoldenable = true -- vim.g.nofoldenable = true
-- Fix Splitting -- Fix Splitting
@ -72,7 +71,7 @@ vim.cmd([[set foldmethod=manual]])
-- vim.opt.textwidth = 80 -- vim.opt.textwidth = 80
-- vim.opt.wrap = true -- vim.opt.wrap = true
-- vim.opt.linebreak = true -- vim.opt.linebreak = true
vim.cmd([[au BufRead,BufNewFile *.md setlocal textwidth=80]]) -- vim.cmd([[au BufRead,BufNewFile *.md setlocal textwidth=80]])
-- max tab characters -- max tab characters
vim.cmd([[let g:mintabline_tab_max_chars=10]]) vim.cmd([[let g:mintabline_tab_max_chars=10]])