fix(nvim): remove call to removed plugin
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m8s

This commit is contained in:
Price Hiller 2024-06-24 14:41:50 -05:00
parent aa4ff5e553
commit 1ce511e451
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,9 +1,3 @@
local file_loc = vim.fn.expand("%:p:h")
vim.opt_local.makeprg = "docker build " .. file_loc
vim.api.nvim_create_autocmd({ "TextChanged", "TextChangedI" }, {
callback = function()
require("lint").try_lint()
end,
})