30 lines
1.1 KiB
Lua
30 lines
1.1 KiB
Lua
-- 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" },
|
|
|
|
}
|