mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
12 lines
325 B
Lua
12 lines
325 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
dependencies = {
|
|
{ "hrsh7th/cmp-nvim-lsp", name = "nvim_lsp" },
|
|
{ "antosha417/nvim-lsp-file-operations", config = true },
|
|
},
|
|
config = function()
|
|
require("absolute.after.lsp-config")
|
|
end
|
|
}
|