lazy load lspconfig :D
This commit is contained in:
parent
2f238742d2
commit
0e9b3832ae
3
init.lua
3
init.lua
|
@ -5,9 +5,6 @@ require "misc-utils"
|
||||||
require "top-bufferline"
|
require "top-bufferline"
|
||||||
require "statusline"
|
require "statusline"
|
||||||
|
|
||||||
-- lsp stuff
|
|
||||||
require "nvim-lspconfig"
|
|
||||||
|
|
||||||
local cmd = vim.cmd
|
local cmd = vim.cmd
|
||||||
local g = vim.g
|
local g = vim.g
|
||||||
|
|
||||||
|
|
|
@ -1,90 +1,94 @@
|
||||||
function on_attach(client, bufnr)
|
local M = {}
|
||||||
local function buf_set_keymap(...)
|
|
||||||
vim.api.nvim_buf_set_keymap(bufnr, ...)
|
M.config = function()
|
||||||
end
|
function on_attach(client, bufnr)
|
||||||
local function buf_set_option(...)
|
local function buf_set_keymap(...)
|
||||||
vim.api.nvim_buf_set_option(bufnr, ...)
|
vim.api.nvim_buf_set_keymap(bufnr, ...)
|
||||||
|
end
|
||||||
|
local function buf_set_option(...)
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, ...)
|
||||||
|
end
|
||||||
|
|
||||||
|
buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
|
||||||
|
|
||||||
|
-- Mappings.
|
||||||
|
local opts = {noremap = true, silent = true}
|
||||||
|
|
||||||
|
buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts)
|
||||||
|
buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts)
|
||||||
|
|
||||||
|
-- Set some keybinds conditional on server capabilities
|
||||||
|
if client.resolved_capabilities.document_formatting then
|
||||||
|
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)
|
||||||
|
elseif client.resolved_capabilities.document_range_formatting then
|
||||||
|
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
|
-- lspInstall + lspconfig stuff
|
||||||
|
|
||||||
-- Mappings.
|
local function setup_servers()
|
||||||
local opts = {noremap = true, silent = true}
|
require "lspinstall".setup()
|
||||||
|
|
||||||
buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts)
|
local lspconf = require("lspconfig")
|
||||||
buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts)
|
local servers = require "lspinstall".installed_servers()
|
||||||
buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts)
|
|
||||||
buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts)
|
|
||||||
|
|
||||||
-- Set some keybinds conditional on server capabilities
|
for _, lang in pairs(servers) do
|
||||||
if client.resolved_capabilities.document_formatting then
|
if lang ~= "lua" then
|
||||||
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)
|
lspconf[lang].setup {
|
||||||
elseif client.resolved_capabilities.document_range_formatting then
|
on_attach = on_attach,
|
||||||
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts)
|
root_dir = vim.loop.cwd
|
||||||
end
|
}
|
||||||
end
|
elseif lang == "lua" then
|
||||||
|
lspconf[lang].setup {
|
||||||
-- lspInstall + lspconfig stuff
|
root_dir = vim.loop.cwd,
|
||||||
|
settings = {
|
||||||
local function setup_servers()
|
Lua = {
|
||||||
require "lspinstall".setup()
|
diagnostics = {
|
||||||
|
globals = {"vim"}
|
||||||
local lspconf = require("lspconfig")
|
},
|
||||||
local servers = require "lspinstall".installed_servers()
|
workspace = {
|
||||||
|
library = {
|
||||||
for _, lang in pairs(servers) do
|
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
|
||||||
if lang ~= "lua" then
|
[vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true
|
||||||
lspconf[lang].setup {
|
}
|
||||||
on_attach = on_attach,
|
},
|
||||||
root_dir = vim.loop.cwd
|
telemetry = {
|
||||||
}
|
enable = false
|
||||||
elseif lang == "lua" then
|
|
||||||
lspconf[lang].setup {
|
|
||||||
root_dir = function()
|
|
||||||
return vim.loop.cwd()
|
|
||||||
end,
|
|
||||||
settings = {
|
|
||||||
Lua = {
|
|
||||||
diagnostics = {
|
|
||||||
globals = {"vim"}
|
|
||||||
},
|
|
||||||
workspace = {
|
|
||||||
library = {
|
|
||||||
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
|
|
||||||
[vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
telemetry = {
|
|
||||||
enable = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
setup_servers()
|
||||||
|
|
||||||
|
-- Automatically reload after `:LspInstall <server>` so we don't have to restart neovim
|
||||||
|
require "lspinstall".post_install_hook = function()
|
||||||
|
setup_servers() -- reload installed servers
|
||||||
|
vim.cmd("bufdo e") -- triggers FileType autocmd that starts the server
|
||||||
|
end
|
||||||
|
|
||||||
|
-- replace the default lsp diagnostic letters with prettier symbols
|
||||||
|
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"})
|
||||||
|
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"})
|
||||||
|
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"})
|
||||||
|
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})
|
||||||
end
|
end
|
||||||
|
|
||||||
setup_servers()
|
return M
|
||||||
|
|
||||||
-- Automatically reload after `:LspInstall <server>` so we don't have to restart neovim
|
|
||||||
require "lspinstall".post_install_hook = function()
|
|
||||||
setup_servers() -- reload installed servers
|
|
||||||
vim.cmd("bufdo e") -- this triggers the FileType autocmd that starts the server
|
|
||||||
end
|
|
||||||
|
|
||||||
-- replace the default lsp diagnostic letters with prettier symbols
|
|
||||||
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"})
|
|
||||||
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"})
|
|
||||||
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"})
|
|
||||||
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})
|
|
||||||
|
|
|
@ -5,9 +5,11 @@ return packer.startup(
|
||||||
function()
|
function()
|
||||||
use "wbthomason/packer.nvim"
|
use "wbthomason/packer.nvim"
|
||||||
|
|
||||||
|
use "akinsho/nvim-bufferline.lua"
|
||||||
|
use "glepnir/galaxyline.nvim"
|
||||||
|
|
||||||
-- color related stuff
|
-- color related stuff
|
||||||
use "siduck76/nvim-base16.lua"
|
use "siduck76/nvim-base16.lua"
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"norcalli/nvim-colorizer.lua",
|
"norcalli/nvim-colorizer.lua",
|
||||||
event = "BufRead",
|
event = "BufRead",
|
||||||
|
@ -16,7 +18,7 @@ return packer.startup(
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
-- lang stuff
|
-- language related plugins
|
||||||
use {
|
use {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
event = "BufRead",
|
event = "BufRead",
|
||||||
|
@ -25,7 +27,23 @@ return packer.startup(
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
use "neovim/nvim-lspconfig"
|
use {
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
event = "BufRead",
|
||||||
|
config = function()
|
||||||
|
require("nvim-lspconfig").config()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
use "kabouzeid/nvim-lspinstall"
|
||||||
|
|
||||||
|
use {
|
||||||
|
"onsails/lspkind-nvim",
|
||||||
|
event = "BufRead",
|
||||||
|
config = function()
|
||||||
|
require("lspkind").init()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
-- load compe in insert mode only
|
-- load compe in insert mode only
|
||||||
use {
|
use {
|
||||||
|
@ -36,53 +54,12 @@ return packer.startup(
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
use {
|
|
||||||
"onsails/lspkind-nvim",
|
|
||||||
event = "BufRead",
|
|
||||||
config = function()
|
|
||||||
require("lspkind").init()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"sbdchd/neoformat",
|
"sbdchd/neoformat",
|
||||||
cmd = "Neoformat"
|
cmd = "Neoformat"
|
||||||
}
|
}
|
||||||
|
|
||||||
use "nvim-lua/plenary.nvim"
|
use "nvim-lua/plenary.nvim"
|
||||||
use "kabouzeid/nvim-lspinstall"
|
|
||||||
|
|
||||||
use {
|
|
||||||
"lewis6991/gitsigns.nvim",
|
|
||||||
event = "BufRead",
|
|
||||||
config = function()
|
|
||||||
require("gitsigns-nvim").config()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use "akinsho/nvim-bufferline.lua"
|
|
||||||
use "glepnir/galaxyline.nvim"
|
|
||||||
|
|
||||||
use {
|
|
||||||
"windwp/nvim-autopairs",
|
|
||||||
event = "InsertEnter",
|
|
||||||
config = function()
|
|
||||||
require("nvim-autopairs").setup()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
|
||||||
"andymass/vim-matchup",
|
|
||||||
event = "CursorMoved"
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
|
||||||
"terrortylor/nvim-comment",
|
|
||||||
cmd = "CommentToggle",
|
|
||||||
config = function()
|
|
||||||
require("nvim_comment").setup()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
-- snippet support
|
-- snippet support
|
||||||
use {
|
use {
|
||||||
|
@ -105,7 +82,36 @@ return packer.startup(
|
||||||
use "nvim-telescope/telescope-media-files.nvim"
|
use "nvim-telescope/telescope-media-files.nvim"
|
||||||
use "nvim-lua/popup.nvim"
|
use "nvim-lua/popup.nvim"
|
||||||
|
|
||||||
-- misc
|
-- misc plugins
|
||||||
|
use {
|
||||||
|
"lewis6991/gitsigns.nvim",
|
||||||
|
event = "BufRead",
|
||||||
|
config = function()
|
||||||
|
require("gitsigns-nvim").config()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"windwp/nvim-autopairs",
|
||||||
|
event = "InsertEnter",
|
||||||
|
config = function()
|
||||||
|
require("nvim-autopairs").setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"andymass/vim-matchup",
|
||||||
|
event = "CursorMoved"
|
||||||
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"terrortylor/nvim-comment",
|
||||||
|
cmd = "CommentToggle",
|
||||||
|
config = function()
|
||||||
|
require("nvim_comment").setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"glepnir/dashboard-nvim",
|
"glepnir/dashboard-nvim",
|
||||||
cmd = {
|
cmd = {
|
||||||
|
|
Loading…
Reference in New Issue