this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim: dont autoformat markdown

+3 -1
+3 -1
nvim/lua/plugins/lsp.lua
··· 151 151 }) 152 152 vim.api.nvim_create_autocmd("BufWritePre", { 153 153 callback = function() 154 - vim.lsp.buf.format() 154 + if vim.bo.filetype ~= "markdown" then 155 + vim.lsp.buf.format() 156 + end 155 157 end, 156 158 }) 157 159 end,