summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-25 20:40:29 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-25 20:40:29 +0100
commit8392ec7dffa4633288072c55bbe9202ab63e7547 (patch)
tree317c3a4312248e67eeedf3a696dec019a524e4e5 /lua/no-clown-fiesta
parentad908d551706b10245643961fa14df93e4234791 (diff)
feat: add support for alpha
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r--lua/no-clown-fiesta/Alpha.lua6
-rw-r--r--lua/no-clown-fiesta/init.lua2
2 files changed, 8 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/Alpha.lua b/lua/no-clown-fiesta/Alpha.lua
new file mode 100644
index 0000000..920c62b
--- /dev/null
+++ b/lua/no-clown-fiesta/Alpha.lua
@@ -0,0 +1,6 @@
+local Alpha = {
+ AlphaHeader = { fg = C.gray_blue },
+ AlphaButtons = { fg = C.medium_gray },
+}
+
+return Alpha
diff --git a/lua/no-clown-fiesta/init.lua b/lua/no-clown-fiesta/init.lua
index 9eeea98..319d937 100644
--- a/lua/no-clown-fiesta/init.lua
+++ b/lua/no-clown-fiesta/init.lua
@@ -10,6 +10,7 @@ local util = require "no-clown-fiesta.util"
Config = require "no-clown-fiesta.config"
C = require "no-clown-fiesta.palette"
+local Alpha = require "no-clown-fiesta.Alpha"
local Git = require "no-clown-fiesta.Git"
local Hop = require "no-clown-fiesta.Hop"
local highlights = require "no-clown-fiesta.highlights"
@@ -22,6 +23,7 @@ local Treesitter = require "no-clown-fiesta.Treesitter"
local Whichkey = require "no-clown-fiesta.Whichkey"
local skeletons = {
+ Alpha,
Git,
Hop,
highlights,