commit 840f8dee5bbfbd2f04c1a53e5c45798a0ef22ac5
parent 32656ad76d86b409252d8feb1510cc2910fa9f6b
Author: Folke Lemaitre <folke.lemaitre@gmail.com>
Date: Sat, 7 Jan 2023 10:53:01 +0100
feat(lsp): examples on how to setup lspconfig
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua
@@ -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",
+ },
+ },
+}