|
@ -2,6 +2,7 @@ return { |
|
|
"neovim/nvim-lspconfig", |
|
|
"neovim/nvim-lspconfig", |
|
|
event = { "BufReadPre", "BufNewFile" }, |
|
|
event = { "BufReadPre", "BufNewFile" }, |
|
|
dependencies = { |
|
|
dependencies = { |
|
|
|
|
|
{ "saghen/blink.cmp" }, |
|
|
{ "antosha417/nvim-lsp-file-operations", config = true }, |
|
|
{ "antosha417/nvim-lsp-file-operations", config = true }, |
|
|
{ "williamboman/mason.nvim", config = true }, |
|
|
{ "williamboman/mason.nvim", config = true }, |
|
|
{ "williamboman/mason-lspconfig.nvim" }, |
|
|
{ "williamboman/mason-lspconfig.nvim" }, |
|
@ -47,19 +48,23 @@ return { |
|
|
keymap.set("n", "<leader>d", vim.diagnostic.open_float, opts) |
|
|
keymap.set("n", "<leader>d", vim.diagnostic.open_float, opts) |
|
|
|
|
|
|
|
|
opts.desc = "Go to previous diagnostic" |
|
|
opts.desc = "Go to previous diagnostic" |
|
|
keymap.set("n", "[d", vim.diagnostic.goto_prev, opts) |
|
|
|
|
|
|
|
|
keymap.set("n", "[d", function() |
|
|
|
|
|
vim.diagnostic.jump({ count=-1, float=true }) |
|
|
|
|
|
end, opts) |
|
|
|
|
|
|
|
|
opts.desc = "Go to next diagnostic" |
|
|
opts.desc = "Go to next diagnostic" |
|
|
keymap.set("n", "]d", vim.diagnostic.goto_next, opts) |
|
|
|
|
|
|
|
|
keymap.set("n", "]d", function() |
|
|
|
|
|
vim.diagnostic.jump({ count=1, float=true }) |
|
|
|
|
|
end, opts) |
|
|
|
|
|
|
|
|
opts.desc = "Go to previous diagnostic (error only)" |
|
|
opts.desc = "Go to previous diagnostic (error only)" |
|
|
keymap.set("n", "[e", function() |
|
|
keymap.set("n", "[e", function() |
|
|
vim.diagnostic.goto_prev({ severity = vim.diagnostic.severity.ERROR }) |
|
|
|
|
|
|
|
|
vim.diagnostic.jump({ count=-1, float=true, severity = vim.diagnostic.severity.ERROR }) |
|
|
end, opts) |
|
|
end, opts) |
|
|
|
|
|
|
|
|
opts.desc = "Go to next diagnostic (error only)" |
|
|
opts.desc = "Go to next diagnostic (error only)" |
|
|
keymap.set("n", "]e", function() |
|
|
keymap.set("n", "]e", function() |
|
|
vim.diagnostic.goto_next({ severity = vim.diagnostic.severity.ERROR }) |
|
|
|
|
|
|
|
|
vim.diagnostic.jump({ count=1, float=true, severity = vim.diagnostic.severity.ERROR }) |
|
|
end, opts) |
|
|
end, opts) |
|
|
|
|
|
|
|
|
opts.desc = "Show documentation for what is under cursor" |
|
|
opts.desc = "Show documentation for what is under cursor" |
|
@ -69,7 +74,7 @@ return { |
|
|
if client and client.server_capabilities.documentHighlightProvider then |
|
|
if client and client.server_capabilities.documentHighlightProvider then |
|
|
vim.api.nvim_create_autocmd("LspDetach", { |
|
|
vim.api.nvim_create_autocmd("LspDetach", { |
|
|
group = vim.api.nvim_create_augroup("lsp-detach", { clear = true }), |
|
|
group = vim.api.nvim_create_augroup("lsp-detach", { clear = true }), |
|
|
callback = function(event2) |
|
|
|
|
|
|
|
|
callback = function() |
|
|
vim.lsp.buf.clear_references() |
|
|
vim.lsp.buf.clear_references() |
|
|
end, |
|
|
end, |
|
|
}) |
|
|
}) |
|
@ -81,8 +86,7 @@ return { |
|
|
capabilities = vim.tbl_deep_extend( |
|
|
capabilities = vim.tbl_deep_extend( |
|
|
"force", |
|
|
"force", |
|
|
capabilities, |
|
|
capabilities, |
|
|
-- require('blink.cmp').get_lsp_capabilities(), |
|
|
|
|
|
require('cmp_nvim_lsp').default_capabilities() |
|
|
|
|
|
|
|
|
require('blink.cmp').get_lsp_capabilities() |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
local base_path = "" |
|
|
local base_path = "" |
|
@ -98,7 +102,7 @@ return { |
|
|
local global_ts = base_path .. "/typescript/lib" |
|
|
local global_ts = base_path .. "/typescript/lib" |
|
|
local found_ts = "" |
|
|
local found_ts = "" |
|
|
local function check_dir(path) |
|
|
local function check_dir(path) |
|
|
found_ts = util.path.join(path, "node_modules", "typescript", "lib") |
|
|
|
|
|
|
|
|
found_ts = table.concat({path, "node_modules", "typescript", "lib"}, "/") |
|
|
if vim.loop.fs_stat(found_ts) then |
|
|
if vim.loop.fs_stat(found_ts) then |
|
|
return path |
|
|
return path |
|
|
end |
|
|
end |
|
@ -115,8 +119,6 @@ return { |
|
|
return global_ts |
|
|
return global_ts |
|
|
end |
|
|
end |
|
|
|
|
|
|
|
|
local path = util.path |
|
|
|
|
|
|
|
|
|
|
|
local function organize_imports() |
|
|
local function organize_imports() |
|
|
local params = { |
|
|
local params = { |
|
|
command = "_typescript.organizeImports", |
|
|
command = "_typescript.organizeImports", |
|
|