vim.lsp.config('bashls', { cmd = { 'bash-language-server', 'start' }, settings = { bashIde = { globPattern = vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)', }, }, filetypes = { 'bash', 'sh', 'zsh' }, root_markers = { '.git' }, }) vim.lsp.enable('bashls')