aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/bashls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/bashls.lua')
-rw-r--r--lua/lspconfig/bashls.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/lua/lspconfig/bashls.lua b/lua/lspconfig/bashls.lua
deleted file mode 100644
index 9c45e931..00000000
--- a/lua/lspconfig/bashls.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
-
-local server_name = 'bashls'
-
-configs[server_name] = {
- default_config = {
- cmd = { 'bash-language-server', 'start' },
- cmd_env = {
- -- Prevent recursive scanning which will cause issues when opening a file
- -- directly in the home directory (e.g. ~/foo.sh).
- --
- -- Default upstream pattern is "**/*@(.sh|.inc|.bash|.command)".
- GLOB_PATTERN = vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)',
- },
- filetypes = { 'sh' },
- root_dir = util.find_git_ancestor,
- single_file_support = true,
- },
- docs = {
- description = [[
-https://github.com/mads-hartmann/bash-language-server
-
-Language server for bash, written using tree sitter in typescript.
-]],
- default_config = {
- root_dir = [[util.find_git_ancestor]],
- },
- },
-}