mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 01:55:08 +02:00
lsp in ftplugin austonautomoy
This commit is contained in:
parent
9bb4f8a085
commit
20ed47e21e
45 changed files with 404 additions and 142 deletions
33
ftplugin/sh.lua
Normal file
33
ftplugin/sh.lua
Normal file
|
@ -0,0 +1,33 @@
|
|||
-- npm i -g bash-language-server
|
||||
require'lspconfig'.bashls.setup {
|
||||
cmd = {DATA_PATH .. "/lspinstall/bash/node_modules/.bin/bash-language-server", "start"},
|
||||
on_attach = require'lsp'.common_on_attach,
|
||||
filetypes = { "sh", "zsh" }
|
||||
}
|
||||
|
||||
-- sh
|
||||
local sh_arguments = {}
|
||||
|
||||
local shfmt = {formatCommand = 'shfmt -ci -s -bn', formatStdin = true}
|
||||
|
||||
local shellcheck = {
|
||||
LintCommand = 'shellcheck -f gcc -x',
|
||||
lintFormats = {'%f:%l:%c: %trror: %m', '%f:%l:%c: %tarning: %m', '%f:%l:%c: %tote: %m'}
|
||||
}
|
||||
|
||||
if O.lang.sh.formatter == 'shfmt' then table.insert(sh_arguments, shfmt) end
|
||||
|
||||
if O.lang.sh.linter == 'shellcheck' then table.insert(sh_arguments, shellcheck) end
|
||||
|
||||
require"lspconfig".efm.setup {
|
||||
-- init_options = {initializationOptions},
|
||||
cmd = {DATA_PATH .. "/lspinstall/efm/efm-langserver"},
|
||||
init_options = {documentFormatting = true, codeAction = false},
|
||||
filetypes = {"sh"},
|
||||
settings = {
|
||||
rootMarkers = {".git/"},
|
||||
languages = {
|
||||
sh = sh_arguments,
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue