mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-29 23:46:17 +00:00
64 lines
2.3 KiB
Lua
64 lines
2.3 KiB
Lua
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.colorscheme.catppuccin",
|
|
opts = {
|
|
flavour = "mocha",
|
|
transparent_background = true,
|
|
dim_inactive = {
|
|
enabled = true,
|
|
shade = "dark",
|
|
percentage = 0.15,
|
|
},
|
|
}
|
|
},
|
|
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
|
{ import = "astrocommunity.completion.tabnine-nvim" },
|
|
{ import = "astrocommunity.bars-and-lines.smartcolumn-nvim" },
|
|
{
|
|
"m4xshen/smartcolumn.nvim",
|
|
opts = {
|
|
colorcolumn = { "80", "100", "120" },
|
|
disabled_filetypes = { "help", "text", "markdown", "json" },
|
|
},
|
|
},
|
|
{ import = "astrocommunity.diagnostics.trouble-nvim" },
|
|
{
|
|
"folke/trouble.nvim",
|
|
opts = {
|
|
auto_open = true,
|
|
position = "bottom"
|
|
}
|
|
},
|
|
{ import = "astrocommunity.debugging.telescope-dap-nvim" },
|
|
{ import = "astrocommunity.editing-support.comment-box-nvim" },
|
|
{ import = "astrocommunity.editing-support.refactoring-nvim" },
|
|
{ import = "astrocommunity.editing-support.neogen" },
|
|
{ import = "astrocommunity.editing-support.nvim-regexplainer" },
|
|
{ import = "astrocommunity.editing-support.todo-comments-nvim" },
|
|
{ import = "astrocommunity.indent.mini-indentscope" },
|
|
{ import = "astrocommunity.lsp.lsp-signature-nvim" },
|
|
{ import = "astrocommunity.motion.harpoon" },
|
|
{ import = "astrocommunity.pack.ansible" },
|
|
{ import = "astrocommunity.pack.bash" },
|
|
{ import = "astrocommunity.pack.docker" },
|
|
{ import = "astrocommunity.pack.go" },
|
|
{ import = "astrocommunity.pack.html-css" },
|
|
{ import = "astrocommunity.pack.json" },
|
|
{ import = "astrocommunity.pack.markdown" },
|
|
{ import = "astrocommunity.pack.php" },
|
|
{ import = "astrocommunity.pack.typescript" },
|
|
{ import = "astrocommunity.pack.vue" },
|
|
{ import = "astrocommunity.pack.yaml" },
|
|
{ import = "astrocommunity.project.nvim-spectre" },
|
|
{ import = "astrocommunity.project.project-nvim" },
|
|
{ import = "astrocommunity.test.neotest" },
|
|
{ import = "astrocommunity.utility.neodim" },
|
|
{ import = "astrocommunity.utility.transparent-nvim" },
|
|
}
|
|
|