feat(plugin): added Plugin.priority for start plugins

This commit is contained in:
Folke Lemaitre 2022-12-27 17:24:40 +01:00
parent eec0485d45
commit edf8310288
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
4 changed files with 50 additions and 7 deletions

View file

@ -1,6 +1,14 @@
return {
-- the colorscheme should be available when starting Neovim
"folke/tokyonight.nvim",
{
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme tokyonight]])
end,
},
-- I have a separate config.mappings file where I require which-key.
-- With lazy the plugin will be automatically loaded when it is required somewhere