From 404a6faffe8fbfaf2ec3ea5918273fca1c70e046 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Wed, 13 May 2026 22:54:14 +0200 Subject: [PATCH] fix(checkmake): set proper file type for Makefile --- lua/weeheavy/plugins/lsp/nvim-lint.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/weeheavy/plugins/lsp/nvim-lint.lua b/lua/weeheavy/plugins/lsp/nvim-lint.lua index dbf41f0..6716a8b 100644 --- a/lua/weeheavy/plugins/lsp/nvim-lint.lua +++ b/lua/weeheavy/plugins/lsp/nvim-lint.lua @@ -44,7 +44,7 @@ return { sh = { "gitleaks" }, bash = { "gitleaks" }, go = { "golangcilint" }, - makefile = { "checkmake" }, + make = { "checkmake" }, } local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })