nvim: fix indentation for markdown files

This commit is contained in:
Fernando Schauenburg 2024-07-22 18:28:05 +02:00
parent d596908f2c
commit 03d52dcf70

View file

@ -1,3 +1,4 @@
vim.bo.tabstop = 2 vim.bo.tabstop = 2
vim.bo.shiftwidth = 0 -- use 'tabstop' for indenting
vim.opt.formatoptions:append('t') -- wrap text on 'textwidth' vim.opt.formatoptions:append('t') -- wrap text on 'textwidth'
vim.opt.spell = true -- turn on spell checking vim.opt.spell = true -- turn on spell checking