nvim: lsp-utils: Update bash configuration
This commit is contained in:
parent
3f42d117b6
commit
dd1b17287f
1 changed files with 11 additions and 6 deletions
|
@ -87,12 +87,17 @@ function M.bashls_config()
|
||||||
root_dir = root_directory,
|
root_dir = root_directory,
|
||||||
filetypes = { 'sh' },
|
filetypes = { 'sh' },
|
||||||
single_file_support = true,
|
single_file_support = true,
|
||||||
cmd_env = {
|
settings = {
|
||||||
-- Prevent recursive scanning which will cause issues when opening a file
|
bashIde = {
|
||||||
-- directly in the home directory (e.g. ~/foo.sh).
|
-- Glob pattern for finding and parsing shell script files in the workspace.
|
||||||
--
|
-- Used by the background analysis features across files.
|
||||||
-- Default upstream pattern is "**/*@(.sh|.inc|.bash|.command)".
|
|
||||||
GLOB_PATTERN = vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)',
|
-- 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)".
|
||||||
|
globPattern = vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue