From c848cbde758df035fbed9f2f7c18927a11d4a995 Mon Sep 17 00:00:00 2001 From: Mykhailo Nikiforov Date: Thu, 5 Oct 2023 11:33:43 +0300 Subject: [PATCH] [#6]: Add shellcheck code actions --- nvim/lua/plugins/lang/shell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/plugins/lang/shell.lua b/nvim/lua/plugins/lang/shell.lua index eb2b0cd..d73e116 100644 --- a/nvim/lua/plugins/lang/shell.lua +++ b/nvim/lua/plugins/lang/shell.lua @@ -16,7 +16,7 @@ return { local nls = require("null-ls") opts.sources = opts.sources or {} vim.list_extend(opts.sources, { - -- nls.builtins.code_actions.shellcheck, + nls.builtins.code_actions.shellcheck, -- nls.builtins.diagnostics.shellcheck, nls.builtins.formatting.shfmt, })