diff options
Diffstat (limited to '')
-rw-r--r-- | dot_config/nvim/lua/community.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/community.lua b/dot_config/nvim/lua/community.lua new file mode 100644 index 0000000..c842899 --- /dev/null +++ b/dot_config/nvim/lua/community.lua @@ -0,0 +1,12 @@ +if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE + +-- AstroCommunity: import any community modules here +-- We import this file in `lazy_setup.lua` before the `plugins/` folder. +-- This guarantees that the specs are processed before any user plugins. + +---@type LazySpec +return { + "AstroNvim/astrocommunity", + { import = "astrocommunity.pack.lua" }, + -- import/override with your plugins folder +} |