summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-10 01:49:52 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-10 01:49:52 +0200
commit50d9acaf8d9749610a6168f73cb20cb4b84c1ec9 (patch)
tree669ff936cc8cc66c3507ecae045acb5f7765d887
parent5d7fec862868b39a2d004c4945b127253efdc8b6 (diff)
parent9dcbcbb85c0dccd10b41453cc01cb8f3a49735aa (diff)
Merge branch 'master' of github.com:aktersnurra/no-clown-fiesta.nvim
-rw-r--r--README.md1
-rw-r--r--doc/no-clown-fiesta.txt1
-rw-r--r--lua/no-clown-fiesta/groups/init.lua1
-rw-r--r--lua/no-clown-fiesta/groups/leap.lua12
4 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index f0f4089..c5572ad 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,7 @@ require("no-clown-fiesta").setup({
- Git
- Hop
- Lir
+- Leap
- LSP
- Lualine
- Markdown
diff --git a/doc/no-clown-fiesta.txt b/doc/no-clown-fiesta.txt
index 716c408..fe78c27 100644
--- a/doc/no-clown-fiesta.txt
+++ b/doc/no-clown-fiesta.txt
@@ -48,6 +48,7 @@ SUPPORTED PLUGINS *no-clown-fiesta-supported_plugin
* Alpha
* Git
* Hop
+* Leap
* Lir
* LSP
* Lualine
diff --git a/lua/no-clown-fiesta/groups/init.lua b/lua/no-clown-fiesta/groups/init.lua
index fe4231b..e046e43 100644
--- a/lua/no-clown-fiesta/groups/init.lua
+++ b/lua/no-clown-fiesta/groups/init.lua
@@ -4,6 +4,7 @@ return {
require "no-clown-fiesta.groups.highlights",
require "no-clown-fiesta.groups.hop",
require "no-clown-fiesta.groups.lazy",
+ require "no-clown-fiesta.groups.leap",
require "no-clown-fiesta.groups.lir",
require "no-clown-fiesta.groups.lsp",
require "no-clown-fiesta.groups.markdown",
diff --git a/lua/no-clown-fiesta/groups/leap.lua b/lua/no-clown-fiesta/groups/leap.lua
new file mode 100644
index 0000000..5dfd394
--- /dev/null
+++ b/lua/no-clown-fiesta/groups/leap.lua
@@ -0,0 +1,12 @@
+local M = {}
+
+function M.highlight(palette, opts)
+ return {
+ LeapMatch = { fg = palette.cyan, bold = true },
+ LeapLabelPrimary = { fg = palette.red, bold = true },
+ LeapLabelSecondary = { fg = palette.gray_blue },
+ LeapBackdrop = { fg = palette.gray },
+ }
+end
+
+return M