feat: finalize migration to chezmoi and modernize configuration logic

- Modularize Hyprland config into hyprland.d/
- Implement infinitely scalable monitor/workspace logic using templates and loop-based data structures
- Consolidate host-specific configs (hyprlock, hyprpaper, waybar) into single templates
- Resolve waybar symlink conflict and fix template execution errors
- Integrate chezmoi data variables for scale, resolution, and peripherals
This commit is contained in:
s0wlz (Matthias Puchstein)
2025-12-27 22:52:43 +01:00
commit 8018b53353
363 changed files with 30476 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
-- 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.colorscheme.catppuccin" },
-- these packs can set up things such as Treesitter, Language Servers, additional language specific plugins, and more!
{ import = "astrocommunity.snippet.nvim-snippets" },
{ import = "astrocommunity.pack.lua" },
{ import = "astrocommunity.pack.hyprlang" },
{ import = "astrocommunity.pack.java" },
{ import = "astrocommunity.pack.rust" },
{ import = "astrocommunity.pack.go" },
{ import = "astrocommunity.pack.docker" },
{ import = "astrocommunity.pack.json" },
{ import = "astrocommunity.pack.html-css" },
{ import = "astrocommunity.pack.sql" },
{ import = "astrocommunity.pack.typescript" },
{ import = "astrocommunity.pack.toml" },
{ import = "astrocommunity.pack.xml" },
{ import = "astrocommunity.pack.yaml" },
{ import = "astrocommunity.pack.python" },
{ import = "astrocommunity.pack.kotlin" },
{ import = "astrocommunity.pack.php" },
{ import = "astrocommunity.markdown-and-latex.vimtex" },
-- import/override with your plugins folder
}