mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
64 lines
2 KiB
Fennel
64 lines
2 KiB
Fennel
(local mztenv (require :mzte_nv))
|
|
|
|
(tset mztenv.reg :plugin_load_callbacks [])
|
|
|
|
(let [path mztenv.reg.nvim_plugins]
|
|
(when path
|
|
(vim.opt.runtimepath:prepend (.. path "/*"))
|
|
(vim.opt.runtimepath:append (.. path :/*/after))))
|
|
|
|
;; Plugins to load before nvim finishes startup
|
|
(local startup-plugins [])
|
|
|
|
;; Plugins to load in the background
|
|
(local deferred-plugins [:catppuccin
|
|
:lspconf
|
|
:lsp-saga
|
|
:cmp
|
|
:luasnip
|
|
:nullls
|
|
:lspprogress
|
|
:line
|
|
:treesitter
|
|
:nvimtree
|
|
:devicons
|
|
:neogit
|
|
:telescope
|
|
:autopairs
|
|
:tterm
|
|
:ts-context
|
|
:ufo
|
|
:dap
|
|
:harpoon
|
|
:recorder
|
|
:tsn-actions
|
|
:dressing
|
|
:gitsigns
|
|
:nu
|
|
:nix-update])
|
|
|
|
(local errors {})
|
|
|
|
(fn load-plugin [plugin]
|
|
(let [(success ret) (pcall require (.. :pluginconf/p- plugin))]
|
|
(when (not success)
|
|
(tset errors plugin ret))))
|
|
|
|
(each [_ p (ipairs startup-plugins)]
|
|
(load-plugin p))
|
|
|
|
(fn load-one-deferred [idx]
|
|
(let [plugin (. deferred-plugins idx)]
|
|
(if plugin
|
|
(do
|
|
(load-plugin plugin)
|
|
(vim.schedule #(load-one-deferred (+ idx 1))))
|
|
(do
|
|
(when (next errors)
|
|
(vim.notify (accumulate [text "Errors loading plugin configs:\n" plugin err (pairs errors)]
|
|
(.. text " - " plugin ": " err "\n"))
|
|
vim.log.levels.error))
|
|
(each [_ cb (ipairs mztenv.reg.plugin_load_callbacks)]
|
|
(pcall cb))))))
|
|
|
|
(vim.schedule #(load-one-deferred 1))
|