refactor(nvim): set to textwidth to 0 for markdown files

This commit is contained in:
Price Hiller 2023-09-25 18:57:17 -05:00
parent 4f6b21200e
commit f5be4b4580
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
vim.opt_local.tabstop = 2
vim.opt_local.conceallevel = 0
vim.opt_local.shiftwidth = 2
vim.opt_local.textwidth = 120
vim.opt_local.textwidth = 0
vim.keymap.set("n", "<leader>fr", "<cmd>MarkdownPreview<CR>", {
buffer = true,