feat(nvim): do not override formatexpr for markdown files

This commit is contained in:
Price Hiller 2023-08-27 23:51:31 -05:00
parent 6951329a50
commit 61e9726986
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -4,7 +4,14 @@ return {
event = { "BufReadPre", "BufNewFile" },
opts = function()
local null_ls = require("null-ls")
local function on_attach(client, bufnr)
local ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr })
if ft == "markdown" then
vim.api.nvim_set_option_value("formatexpr", nil, { buf = bufnr })
end
end
return {
on_attach = on_attach,
sources = {
null_ls.builtins.diagnostics.hadolint,
null_ls.builtins.code_actions.refactoring,