From 2326ea6bb9aeb768b5e5d6a32f71359281f54831 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Wed, 15 May 2024 15:49:13 -0400 Subject: [PATCH] fix(nvim): set correct path to shellcheck --- common/home/neovim/langs/bash.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/home/neovim/langs/bash.nix b/common/home/neovim/langs/bash.nix index b6d9661..6190786 100644 --- a/common/home/neovim/langs/bash.nix +++ b/common/home/neovim/langs/bash.nix @@ -37,7 +37,7 @@ in { require('lspconfig').bashls.setup(require('coq').lsp_ensure_capabilities({ settings = { bashIde = { - shellcheckPath = '${pkgs.shellcheck}', + shellcheckPath = '${pkgs.shellcheck}/bin/shellcheck', }, }, }));