File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 63
63
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/ibhagwan/fzf-lua"> fzf-lua</a></label></li>
64
64
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/lewis6991/gitsigns.nvim"> gitsigns.nvim</a></label></li>
65
65
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/cbochs/grapple.nvim"> grapple.nvim</a></label></li>
66
+ <li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/yujinyuz/gitpad.nvim"> gitpad.nvim</a></label></li>
66
67
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/Zeioth/heirline-components.nvim"> heirline-components.nvim</a></label></li>
67
68
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/lukas-reineke/indent-blankline.nvim"> indent-blankline.nvim</a></label></li>
68
69
<li><input type="checkbox" checked disabled><label for=""><a href="https://github.com/ramilito/kubectl.nvim"> kubectl.nvim</a></label></li>
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ local M = {}
27
27
--- @field cmp ? boolean
28
28
--- @field dashboard ? boolean
29
29
--- @field fzflua ? boolean
30
+ --- @field gitpad ? boolean
30
31
--- @field gitsigns ? boolean
31
32
--- @field grapple ? boolean
32
33
--- @field heirline ? boolean
@@ -67,6 +68,7 @@ local default_options = {
67
68
cmp = true ,
68
69
dashboard = true ,
69
70
fzflua = true ,
71
+ gitpad = true ,
70
72
gitsigns = true ,
71
73
grapple = true ,
72
74
heirline = true ,
Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ --- Get extension configuration
4
+ --- @param opts Config
5
+ --- @param t CyberdreamPalette
6
+ function M .get (opts , t )
7
+ opts = opts or {}
8
+ local highlights = {
9
+ GitpadFloat = { link = " NormalFloat" },
10
+ GitpadFloatBorder = { link = " FloatBorder" },
11
+ GitpadFloatTitle = { fg = t .cyan , bold = true },
12
+ }
13
+ return highlights
14
+ end
15
+ return M
You can’t perform that action at this time.
0 commit comments