modules: add comments; formatting

This commit is contained in:
raf 2024-02-19 13:09:35 +03:00
commit 7c66ea2e05
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
4 changed files with 39 additions and 34 deletions

View file

@ -8,31 +8,33 @@
inherit (lib.lists) concatLists;
# map each plugin from our plugins module into a list
# while adding a new parent module, it needs to be added
# here by name before it can be evaluated
plugins = map (p: ./plugins + "/${p}") [
"assistant"
"autopairs"
"comments"
"completion"
"theme"
"dashboard"
"debugger"
"filetree"
"git"
"languages"
"lsp"
"minimap"
"notes"
"projects"
"rich-presence"
"session"
"snippets"
"statusline"
"tabline"
"filetree"
"visuals"
"lsp"
"treesitter"
"autopairs"
"snippets"
"git"
"minimap"
"dashboard"
"utility"
"rich-presence"
"notes"
"terminal"
"theme"
"treesitter"
"ui"
"assistant"
"session"
"comments"
"projects"
"languages"
"debugger"
"utility"
"visuals"
];
core = map (p: ./core + "/${p}") [