feat(lsp): examples on how to setup lspconfig
This commit is contained in:
parent
32656ad76d
commit
840f8dee5b
34
lua/plugins/lsp.lua
Normal file
34
lua/plugins/lsp.lua
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
return {
|
||||||
|
|
||||||
|
-- lsp servers
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
---@type lspconfig.options
|
||||||
|
servers = {
|
||||||
|
jsonls = {},
|
||||||
|
sumneko_lua = {
|
||||||
|
settings = {
|
||||||
|
Lua = {
|
||||||
|
workspace = {
|
||||||
|
checkThirdParty = false,
|
||||||
|
},
|
||||||
|
completion = {
|
||||||
|
callSnippet = "Replace",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
-- tools
|
||||||
|
{
|
||||||
|
"williamboman/mason.nvim",
|
||||||
|
ensure_installed = {
|
||||||
|
"stylua",
|
||||||
|
"shellcheck",
|
||||||
|
"shfmt",
|
||||||
|
"flake8",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user