diff options
author | awy <awy@awy.one> | 2025-09-20 14:32:32 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-09-20 14:32:32 +0300 |
commit | d45dc4e2677e7b5143097308be67d815c93032f6 (patch) | |
tree | aaae3bdde93c989eca6e8893b87ae0dfde5f81c0 | |
parent | 3073a8e4cd4e38da541107961e14b01005e95f2b (diff) | |
download | hyprdots-d45dc4e2677e7b5143097308be67d815c93032f6.tar.gz |
bash language server
-rw-r--r-- | .config/nvim/lua/plugins/lsp-config.lua | 5 | ||||
-rw-r--r-- | dependencies.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins/lsp-config.lua b/.config/nvim/lua/plugins/lsp-config.lua index 4a55fc8..4a500ab 100644 --- a/.config/nvim/lua/plugins/lsp-config.lua +++ b/.config/nvim/lua/plugins/lsp-config.lua @@ -14,6 +14,9 @@ return { } } }) + lspconfig.bashls.setup({ + capabilities = capabilities, + }) lspconfig.lua_ls.setup({ capabilities = capabilities, }) @@ -53,7 +56,7 @@ return { prefix = '', spacing = 4, }, - signs = true, + signs = false, underline = true, -- update_in_insert = false, severity_sort = true, diff --git a/dependencies.txt b/dependencies.txt index a7e81e4..be00fd9 100644 --- a/dependencies.txt +++ b/dependencies.txt @@ -117,3 +117,5 @@ vscode-json-languageserver vscode-html-languageserver lua-language-server yaml-language-server +bash-language-server +shellcheck |