This repository has been archived by the owner on May 17, 2023. It is now read-only.
forked from AstroNvim/user_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.lua
30 lines (29 loc) · 1.42 KB
/
community.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
return {
-- Add the community repository of plugin specifications
"AstroNvim/astrocommunity",
-- example of imporing a plugin, comment out to use it or add your own
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity
{ import = "astrocommunity.code-runner.overseer-nvim" },
{ import = "astrocommunity.color.ccc-nvim" },
{ import = "astrocommunity.completion.copilot-lua-cmp" },
{ import = "astrocommunity.diagnostics.trouble-nvim" },
{ import = "astrocommunity.editing-support.cutlass-nvim" },
{ import = "astrocommunity.editing-support.nvim-regexplainer" },
{ import = "astrocommunity.editing-support.nvim-ts-rainbow2" },
{ import = "astrocommunity.editing-support.text-case-nvim" },
{ import = "astrocommunity.git.openingh" },
{ import = "astrocommunity.indent.indent-tools-nvim" },
{ import = "astrocommunity.pack.bash" },
{ import = "astrocommunity.pack.json" },
{ import = "astrocommunity.pack.lua" },
{ import = "astrocommunity.pack.markdown" },
{ import = "astrocommunity.pack.nix" },
{ import = "astrocommunity.pack.python" },
{ import = "astrocommunity.pack.rust" },
{ import = "astrocommunity.pack.toml" },
{ import = "astrocommunity.pack.yaml" },
{ import = "astrocommunity.test.neotest" },
{ import = "astrocommunity.terminal-integration/flatten-nvim" },
{ import = "astrocommunity.utility.neodim" },
{ import = "astrocommunity.utility.noice-nvim" },
}