File tree 5 files changed +32
-0
lines changed
5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -497,6 +497,7 @@ table that contains the additional configuration as well as a field called
497
497
Current list of modules are:
498
498
499
499
500
+ - alpha
500
501
- aerial
501
502
- barbar
502
503
- cmp
@@ -511,6 +512,8 @@ Current list of modules are:
511
512
- glyph_palette
512
513
- hop
513
514
- illuminate
515
+ - indent_blanklines
516
+ - leap
514
517
- lightspeed
515
518
- lsp_saga
516
519
- lsp_trouble
@@ -576,6 +579,14 @@ modules.native_lsp This module sets highlight groups from
576
579
│background│boolean│true │Set virtual text background color│
577
580
578
581
582
+ *nightfox-modules.leap*
583
+
584
+ │ key │ type │ default │ description │
585
+ │enable │boolean│true │Enable the module to be included │
586
+ │background│boolean│true │Sets the label color to the background│
587
+ │harsh │boolean│false │Sets label’s contrast to be harsher │
588
+
589
+
579
590
COLOR *nightfox-color*
580
591
581
592
Nightfox exposes a color utility library to help with manipulating colors. This
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ M.module_names = {
76
76
" glyph_palette" ,
77
77
" hop" ,
78
78
" illuminate" ,
79
+ " indent_blankline" ,
79
80
" leap" ,
80
81
" lightspeed" ,
81
82
" lsp_saga" ,
Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ function M .get (spec , config , opts )
4
+ local c = spec .palette
5
+ return {
6
+ IndentBlanklineChar = { fg = spec .bg3 },
7
+ IndentBlanklineContextChar = { fg = spec .syntax .variable },
8
+ IndentBlanklineContextStart = { sp = spec .syntax .variable , underline = true },
9
+ IndentBlanklineIndent6 = { blend = 0 , fg = c .yellow .base },
10
+ IndentBlanklineIndent5 = { blend = 0 , fg = c .red .base },
11
+ IndentBlanklineIndent4 = { blend = 0 , fg = c .cyan .base },
12
+ IndentBlanklineIndent3 = { blend = 0 , fg = c .orange .base },
13
+ IndentBlanklineIndent2 = { blend = 0 , fg = c .blue .base },
14
+ IndentBlanklineIndent1 = { blend = 0 , fg = c .pink .base },
15
+ }
16
+ end
17
+
18
+ return M
Original file line number Diff line number Diff line change @@ -528,6 +528,7 @@ There are a few things to note:
528
528
- [ lightspeed.nvim] ( https://github.com/ggandor/lightspeed.nvim )
529
529
- [ lspsaga.nvim] ( https://github.com/glepnir/lspsaga.nvim )
530
530
- [ lsp-trouble.nvim] ( https://github.com/simrat39/lsp-trouble.nvim )
531
+ - [ indent-blankline.nvim] ( https://github.com/lukas-reineke/indent-blankline.nvim )
531
532
- [ mini.nvim] ( https://github.com/echasnovski/mini.nvim )
532
533
- [ modes.nvim] ( https://github.com/mvllow/modes.nvim )
533
534
- [ nvim-navic] ( https://github.com/SmiteshP/nvim-navic )
Original file line number Diff line number Diff line change @@ -404,6 +404,7 @@ Current list of modules are:
404
404
- glyph_palette
405
405
- hop
406
406
- illuminate
407
+ - indent_blanklines
407
408
- leap
408
409
- lightspeed
409
410
- lsp_saga
You can’t perform that action at this time.
0 commit comments