From 88cc5955839cc638cba54303e0f660df1c71bc9e Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Fri, 12 Jun 2026 13:49:22 +0200 Subject: [PATCH] dont always use make if justfile is not found only overwrite makeprg to just if justfile is found, otherwise default to the default 'make' or whatever else makeprg was selected by the compiler plugin --- nvim/.config/nvim/init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index 32d3011..ca86089 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -381,8 +381,6 @@ do end if look_for_file('justfile') then vim.go.makeprg = 'just' - else - vim.go.makeprg = 'make' end end