nix-config-v2/defaults/nvim/lua/community.lua

18 lines
736 B
Lua
Raw Normal View History

2024-09-14 11:38:56 -05:00
-- 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" }, -- lua support
{ import = "astrocommunity.pack.rust" }, -- rust support
{ import = "astrocommunity.pack.markdown" }, -- markdown support
{ import = "astrocommunity.pack.nix" }, -- nix support
-- { import = "astrocommunity.pack.go "}, -- golang support
{ import = "astrocommunity.pack.fish" }, -- fish support
-- { import = "astrocommunity.pack.cs" }, -- csharp/dotnet support
-- import/override with your plugins folder
}