1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-13 01:02:18 -04:00

New neovim theme engine (#1985)

* feat(matugen)!: rework completely neovim's theme engine

* fix: link to neovim theme plugin

* fix: expect AvengeMedia/base46 instead of Silzinc/base46
This commit is contained in:
Jonas Bloch
2026-03-13 18:37:16 +01:00
committed by GitHub
parent ce93f22669
commit 7e1d808d70
8 changed files with 1315 additions and 727 deletions

View File

@@ -477,6 +477,11 @@ Singleton {
property bool matugenTemplateEmacs: true
property bool matugenTemplateZed: true
property var matugenTemplateNeovimSettings: ({
"dark": { "baseTheme": "github_dark", "harmony": 0.5 },
"light": { "baseTheme": "github_light", "harmony": 0.5 }
})
property bool showDock: false
property bool dockAutoHide: false
property bool dockSmartAutoHide: false

View File

@@ -292,6 +292,13 @@ var SPEC = {
matugenTemplateEmacs: { def: true },
matugenTemplateZed: { def: true },
matugenTemplateNeovimSettings: {
def: {
dark: { baseTheme: "github_dark", harmony: 0.5 },
light: { baseTheme: "github_light", harmony: 0.5 }
}
},
showDock: { def: false },
dockAutoHide: { def: false },
dockSmartAutoHide: { def: false },