126 lines
4.9 KiB
Lua
126 lines
4.9 KiB
Lua
local nvim_lsp = require('lspconfig')
|
|
local lsp_status = require('lsp-status')
|
|
local lsp_fuzzy = require('lspfuzzy')
|
|
local protocol = require('vim.lsp.protocol')
|
|
|
|
-- Taken from https://www.reddit.com/r/neovim/comments/gyb077/nvimlsp_peek_defination_javascript_ttserver/
|
|
function preview_location(location, context, before_context)
|
|
-- location may be LocationLink or Location (more useful for the former)
|
|
context = context or 10
|
|
before_context = before_context or 5
|
|
local uri = location.targetUri or location.uri
|
|
if uri == nil then
|
|
return
|
|
end
|
|
local bufnr = vim.uri_to_bufnr(uri)
|
|
if not vim.api.nvim_buf_is_loaded(bufnr) then
|
|
vim.fn.bufload(bufnr)
|
|
end
|
|
local range = location.targetRange or location.range
|
|
local contents =
|
|
vim.api.nvim_buf_get_lines(bufnr, range.start.line - before_context, range["end"].line + 1 + context, false)
|
|
local filetype = vim.api.nvim_buf_get_option(bufnr, "filetype")
|
|
return vim.lsp.util.open_floating_preview(contents, filetype)
|
|
end
|
|
|
|
function preview_location_callback(_, method, result)
|
|
local context = 10
|
|
if result == nil or vim.tbl_isempty(result) then
|
|
print("No location found: " .. method)
|
|
return nil
|
|
end
|
|
if vim.tbl_islist(result) then
|
|
floating_buf, floating_win = preview_location(result[1], context)
|
|
else
|
|
floating_buf, floating_win = preview_location(result, context)
|
|
end
|
|
end
|
|
|
|
function peek_definition()
|
|
if vim.tbl_contains(vim.api.nvim_list_wins(), floating_win) then
|
|
vim.api.nvim_set_current_win(floating_win)
|
|
else
|
|
local params = vim.lsp.util.make_position_params()
|
|
return vim.lsp.buf_request(0, "textDocument/definition", params, preview_location_callback)
|
|
end
|
|
end
|
|
|
|
local on_attach = function(client, bufnr)
|
|
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
|
|
lsp_status.on_attach(client, bufnr)
|
|
|
|
if client.config.flags then
|
|
client.config.flags.allow_incremental_sync = true
|
|
end
|
|
|
|
local opts = { noremap=true, silent=true }
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'ga', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gs', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gt', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'g0', '<cmd>lua vim.lsp.buf.document_symbol()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gW', '<cmd>lua vim.lsp.buf.workspace_symbol()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<Leader>de', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<Leader>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'pd', '<cmd>lua peek_definition()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev { wrap = false }<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next { wrap = false }<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '[D', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', ']D', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'do', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gD', '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>', opts)
|
|
|
|
protocol.CompletionItemKind = {
|
|
' '; -- text
|
|
' '; -- method
|
|
' '; -- function
|
|
'全'; -- ctor
|
|
' '; -- field
|
|
' '; -- variable
|
|
' '; -- class
|
|
' '; -- interface
|
|
' '; -- module
|
|
' '; -- property
|
|
' '; -- unit
|
|
' '; -- value
|
|
'螺'; -- enum
|
|
' '; -- keyword
|
|
' '; -- snippet
|
|
' '; -- color
|
|
' '; -- file
|
|
' '; -- reference
|
|
' '; -- folder
|
|
' '; -- enum member
|
|
' '; -- constant
|
|
' '; -- struct
|
|
' '; -- event
|
|
'璉'; -- operator
|
|
' '; -- type parameter
|
|
}
|
|
end
|
|
|
|
local servers = { 'hls', 'rust_analyzer' }
|
|
for _, lsp in ipairs(servers) do
|
|
lsp_fuzzy.setup {}
|
|
lsp_status.register_progress()
|
|
lsp_status.config({
|
|
kind_labels = {},
|
|
current_function = true,
|
|
indicator_separator = ' ',
|
|
indicator_errors = ' ',
|
|
indicator_warnings = ' ',
|
|
indicator_info = ' 🛈 ',
|
|
indicator_hint = '❗',
|
|
indicator_ok = ' ',
|
|
spinner_frames = { '⣾', '⣽', '⣻', '⢿', '⡿', '⣟', '⣯', '⣷' },
|
|
status_symbol = ' 🇻 ',
|
|
select_symbol = nil
|
|
})
|
|
nvim_lsp[lsp].setup {
|
|
on_attach = on_attach,
|
|
capabilities = lsp_status.capabilities
|
|
}
|
|
end
|