83 lines
2.8 KiB
Lua
83 lines
2.8 KiB
Lua
local lsp = require "lspconfig"
|
|
local lsp_status = require("lsp-status")
|
|
local ts_utils = require("nvim-lsp-ts-utils")
|
|
|
|
require'nvim-lightbulb'.setup {
|
|
-- LSP client names to ignore
|
|
-- Example: {"sumneko_lua", "null-ls"}
|
|
ignore = {},
|
|
sign = {
|
|
enabled = true,
|
|
-- Priority of the gutter sign
|
|
priority = 10,
|
|
},
|
|
float = {
|
|
enabled = false,
|
|
-- Text to show in the popup float
|
|
text = "💡",
|
|
-- Available keys for window options:
|
|
-- - height of floating window
|
|
-- - width of floating window
|
|
-- - wrap_at character to wrap at for computing height
|
|
-- - max_width maximal width of floating window
|
|
-- - max_height maximal height of floating window
|
|
-- - pad_left number of columns to pad contents at left
|
|
-- - pad_right number of columns to pad contents at right
|
|
-- - pad_top number of lines to pad contents at top
|
|
-- - pad_bottom number of lines to pad contents at bottom
|
|
-- - offset_x x-axis offset of the floating window
|
|
-- - offset_y y-axis offset of the floating window
|
|
-- - anchor corner of float to place at the cursor (NW, NE, SW, SE)
|
|
-- - winblend transparency of the window (0-100)
|
|
win_opts = {},
|
|
},
|
|
virtual_text = {
|
|
enabled = false,
|
|
-- Text to show at virtual text
|
|
text = "💡",
|
|
-- highlight mode to use for virtual text (replace, combine, blend), see :help nvim_buf_set_extmark() for reference
|
|
hl_mode = "replace",
|
|
},
|
|
status_text = {
|
|
enabled = false,
|
|
-- Text to provide when code actions are available
|
|
text = "💡",
|
|
-- Text to provide when no actions are available
|
|
text_unavailable = ""
|
|
}
|
|
}
|
|
|
|
|
|
local runtime_path = vim.split(package.path, ";")
|
|
table.insert(runtime_path, "lua/?.lua")
|
|
table.insert(runtime_path, "lua/?/init.lua")
|
|
|
|
lsp.sumneko_lua.setup {
|
|
settings = {
|
|
Lua = {
|
|
runtime = {
|
|
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
|
|
version = "LuaJIT",
|
|
-- Setup your lua path
|
|
path = runtime_path
|
|
},
|
|
diagnostics = {
|
|
-- Get the language server to recognize the `vim` global
|
|
globals = {"vim"}
|
|
},
|
|
workspace = {
|
|
-- Make the server aware of Neovim runtime files
|
|
library = vim.api.nvim_get_runtime_file("", true)
|
|
},
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
telemetry = {
|
|
enable = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
-- Ltex Language Server
|
|
require("grammar-guard").init()
|
|
|