diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-11 15:07:55 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-11 15:07:55 -0500 |
| commit | cebb280fe546190e55e071b6adbf37cd47950f34 (patch) | |
| tree | 6e7a7605f8832b1c1bd7e467884a8792a5e1fab4 /runtime/lua/core/themes.lua | |
initial commit
Diffstat (limited to 'runtime/lua/core/themes.lua')
| -rw-r--r-- | runtime/lua/core/themes.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/lua/core/themes.lua b/runtime/lua/core/themes.lua new file mode 100644 index 0000000..8a76645 --- /dev/null +++ b/runtime/lua/core/themes.lua @@ -0,0 +1,8 @@ +local M = {} + +M.all = { + ["base16-default-light"] = require("themes.base16-default-light"), + ["base16-gruvbox-dark-hard"] = require("themes.base16-gruvbox-dark-hard"), +} + +return M |
