This commit is contained in:
2023-11-03 21:04:02 +01:00
commit 3b1035fd35
14 changed files with 372 additions and 0 deletions

29
plugins/community.lua Normal file
View File

@@ -0,0 +1,29 @@
-- Filter by hostname
local home = vim.fn.hostname() == "comanche"
local work = not home
return {
"AstroNvim/astrocommunity",
-- Language packs
{ enabled = true, import = "astrocommunity.pack.cpp" },
{ enabled = true, import = "astrocommunity.pack.lua" },
{ enabled = true, import = "astrocommunity.pack.markdown" },
-- { enabled = true, import = "astrocommunity.pack.rust" },
{ enabled = home, import = "astrocommunity.pack.bash" },
{ enabled = home, import = "astrocommunity.pack.html-css" },
{ enabled = home, import = "astrocommunity.pack.java" },
{ enabled = work, import = "astrocommunity.pack.cs" },
{ enabled = work, import = "astrocommunity.pack.ps1" },
-- { enable = home, import = "astrocommunity.pack.wgsl" }, -- WebGLShaderLanguage
-- DAP
{ import = "astrocommunity.debugging.telescope-dap-nvim" },
{ import = "astrocommunity.debugging.nvim-dap-virtual-text" },
{ import = "astrocommunity.debugging.nvim-dap-repl-highlights" },
-- Others
-- TODO usefull?
{ import = "astrocommunity.debugging.nvim-bqf" },
}