From: jliaoh <48660001+hunterliao29@users.noreply.github.com> Date: Mon, 23 Jan 2023 22:40:49 +0000 (-0500) Subject: fix(lazy): rearrange imports order so that user can overwrite extra modules (#9) X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=2d99662e1a3945f45d35e0fd323f7b8e2b338887;p=nvim-config.git fix(lazy): rearrange imports order so that user can overwrite extra modules (#9) --- diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index a99faaa..891b190 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -10,12 +10,12 @@ require("lazy").setup({ spec = { -- add LazyVim and import its plugins { "LazyVim/LazyVim", import = "lazyvim.plugins" }, - -- import/override with your plugins - { import = "plugins" }, -- import any extras modules here -- { import = "lazyvim.plugins.extras.lang.typescript" }, -- { import = "lazyvim.plugins.extras.lang.json" }, -- { import = "lazyvim.plugins.extras.ui.mini-animate" }, + -- import/override with your plugins + { import = "plugins" }, }, defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.