summaryrefslogtreecommitdiffstats
path: root/lua/user/core/lsp/settings
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2023-09-29 10:51:39 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2023-09-29 10:51:39 +0200
commit5719438ba75a069bc885608652e712855e7bac26 (patch)
tree7cf7a5fb85c35f8c617f006c1e038a4eb28a0ab7 /lua/user/core/lsp/settings
parentdb757d2dbc0732991998731001e8051be6b305b5 (diff)
downloadvim-5719438ba75a069bc885608652e712855e7bac26.zip
vim-5719438ba75a069bc885608652e712855e7bac26.tar.gz
remove null-ls and sumneko
Diffstat (limited to 'lua/user/core/lsp/settings')
-rw-r--r--lua/user/core/lsp/settings/sumneko_lua.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lua/user/core/lsp/settings/sumneko_lua.lua b/lua/user/core/lsp/settings/sumneko_lua.lua
deleted file mode 100644
index d7e82b4..0000000
--- a/lua/user/core/lsp/settings/sumneko_lua.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-return {
- settings = {
-
- Lua = {
- diagnostics = {
- globals = { "vim" }, -- teach about vim global variable
- },
- workspace = {
- library = {
- [vim.fn.expand("$VIMRUNTIME/lua")] = true,
- [vim.fn.stdpath("config") .. "/lua"] = true,
- },
- },
- },
- },
-}