Created
June 27, 2024 09:40
-
-
Save levmichael3/6258bcf5a9356300ef6b7d4fce6c08ee to your computer and use it in GitHub Desktop.
Community (recommended) setup for AstroVim plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 = "astrocommunity.pack.markdown" }, | |
{ import = "astrocommunity.pack.yaml" }, | |
{ import = "astrocommunity.pack.json" }, | |
{ import = "astrocommunity.pack.helm" }, | |
{ import = "astrocommunity.pack.docker" }, | |
{ import = "astrocommunity.pack.full-dadbod" }, | |
-- import/override with your plugins folder | |
{ import = "astrocommunity.colorscheme.catppuccin" }, | |
{ import = "astrocommunity.motion.mini-surround" }, | |
-- { import = "astrocommunity.completion.mini-completion" }, | |
{ import = "astrocommunity.completion.codeium-vim" }, | |
-- { import = "astrocommunity.editing-support.yanky-nvim" }, | |
{ import = "astrocommunity.diagnostics.error-lens-nvim" }, | |
{ import = "astrocommunity.terminal-integration.nvim-unception" }, | |
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" }, | |
{ import = "astrocommunity.bars-and-lines.smartcolumn-nvim" }, | |
{ import = "astrocommunity.bars-and-lines.vim-illuminate" }, | |
{ import = "astrocommunity.bars-and-lines.statuscol-nvim" }, | |
{ import = "astrocommunity.bars-and-lines.lualine-nvim" }, | |
{ import = "astrocommunity.bars-and-lines.bufferline-nvim" }, | |
-- { import = "astrocommunity.bars-and-lines.scope-nvim" }, | |
{ import = "astrocommunity.keybinding.hydra-nvim" }, | |
{ import = "astrocommunity.markdown-and-latex.markdown-preview-nvim" }, | |
{ import = "astrocommunity.workflow.bad-practices-nvim" }, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment