mirror of
https://github.com/ray-x/navigator.lua
synced 2024-11-03 15:40:20 +00:00
lazyload for lua-dev
This commit is contained in:
parent
1f3680d4b1
commit
a952d694e1
@ -1,35 +1,35 @@
|
||||
return {
|
||||
init = function()
|
||||
local loader = nil
|
||||
local packer_plugins = packer_plugins or nil -- suppress warnings
|
||||
local loader = nil
|
||||
local packer_plugins = packer_plugins or nil -- suppress warnings
|
||||
local log = require'navigator.util'.log
|
||||
-- packer only
|
||||
if packer_plugins ~= nil then -- packer install
|
||||
local lazy_plugins = {
|
||||
["nvim-lspconfig"] = "neovim/nvim-lspconfig",
|
||||
["guihua.lua"] = "ray-x/guihua.lua"
|
||||
}
|
||||
-- packer only
|
||||
if packer_plugins ~= nil then -- packer install
|
||||
local lazy_plugins = {
|
||||
["nvim-lspconfig"] = "neovim/nvim-lspconfig",
|
||||
["guihua.lua"] = "ray-x/guihua.lua"
|
||||
}
|
||||
|
||||
if _NgConfigValues.lspinstall == true then
|
||||
lazy_plugins["nvim-lspinstall"] = "kabouzeid/nvim-lspinstall"
|
||||
end
|
||||
if _NgConfigValues.lspinstall == true then
|
||||
lazy_plugins["nvim-lspinstall"] = "kabouzeid/nvim-lspinstall"
|
||||
end
|
||||
|
||||
-- packer installed
|
||||
loader = require"packer".loader
|
||||
for plugin, url in pairs(lazy_plugins) do
|
||||
if not packer_plugins[url] or not packer_plugins[url].loaded then
|
||||
-- packer installed
|
||||
loader = require"packer".loader
|
||||
for plugin, url in pairs(lazy_plugins) do
|
||||
if not packer_plugins[url] or not packer_plugins[url].loaded then
|
||||
-- log("loading ", plugin)
|
||||
loader(plugin)
|
||||
end
|
||||
end
|
||||
loader(plugin)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
if _NgConfigValues.lspinstall == true then
|
||||
local has_lspinst, lspinst = pcall(require, "lspinstall")
|
||||
if _NgConfigValues.lspinstall == true then
|
||||
local has_lspinst, lspinst = pcall(require, "lspinstall")
|
||||
log('lspinstall', has_lspinst)
|
||||
if has_lspinst then
|
||||
lspinst.setup()
|
||||
if has_lspinst then
|
||||
lspinst.setup()
|
||||
local configs = require "lspconfig/configs"
|
||||
local servers = require'lspinstall'.installed_servers()
|
||||
for _, server in pairs(servers) do
|
||||
@ -39,9 +39,9 @@ if packer_plugins ~= nil then -- packer install
|
||||
lsp_inst_cfg = lsp_inst_cfg.document_config.default_config
|
||||
lsp_inst_cfg = vim.tbl_deep_extend('keep', lsp_inst_cfg, cfg)
|
||||
require'lspconfig'[server].setup(lsp_inst_cfg)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end,
|
||||
load = function(plugin_name, path)
|
||||
|
@ -44,7 +44,7 @@ local luadevcfg = {
|
||||
}
|
||||
|
||||
local luadev = {}
|
||||
require'navigator.lazyloader'.load('lua-dev', 'folke/lua-dev.nvim')
|
||||
require'navigator.lazyloader'.load('lua-dev.nvim', 'folke/lua-dev.nvim')
|
||||
local ok, l = pcall(require, "lua-dev")
|
||||
if ok and l then
|
||||
luadev = l.setup(luadevcfg)
|
||||
@ -474,12 +474,12 @@ local function lsp_startup(ft, retry, user_lsp_opts)
|
||||
end
|
||||
|
||||
if not _NG_Loaded['efm'] then
|
||||
local efm_cfg = user_lsp_opts['efm']
|
||||
if efm_cfg then
|
||||
lspconfig.efm.setup(efm_cfg)
|
||||
local efm_cfg = user_lsp_opts['efm']
|
||||
if efm_cfg then
|
||||
lspconfig.efm.setup(efm_cfg)
|
||||
log('efm loading')
|
||||
_NG_Loaded['efm'] = true
|
||||
end
|
||||
end
|
||||
end
|
||||
if not retry or ft == nil then
|
||||
return
|
||||
@ -494,7 +494,7 @@ local function get_cfg(client)
|
||||
return ng_setup
|
||||
else
|
||||
return ng_cfg
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function setup(user_opts)
|
||||
|
Loading…
Reference in New Issue
Block a user