File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,12 @@ and then read `:h nvui.base46`
3939- Edgy.nvim
4040- Grug-far.nvim
4141- Flash.nvim
42+ - Blink.nvim
43+ - Blink.pairs
4244
4345## Configuration
4446
45- - Base46 is configured by [ nvconfig] ( https://github.com/NvChad/ui/blob/v2.5 /lua/nvconfig.lua ) in your path.
47+ - Base46 is configured by [ nvconfig] ( https://github.com/NvChad/ui/blob/v3.0 /lua/nvconfig.lua ) in your path.
4648- Read the [ themeing docs] ( https://nvchad.com/docs/config/theming )
4749
4850## Highlight command
Original file line number Diff line number Diff line change 1+ local colors = require (" base46" ).get_theme_tb " base_30"
2+
3+ local highligths = {
4+
5+ BlinkPairsOrange = { fg = colors .orange },
6+ BlinkPairsPurple = { fg = colors .purple },
7+ BlinkPairsBlue = { fg = colors .blue },
8+ BlinkPairsRed = { fg = colors .red },
9+ BlinkPairsYellow = { fg = colors .yellow },
10+ BlinkPairsGreen = { fg = colors .green },
11+ BlinkPairsCyan = { fg = colors .cyan },
12+ BlinkPairsViolet = { fg = colors .dark_purple },
13+
14+ BlinkPairsUnmatched = { fg = colors .red },
15+ BlinkPairsMatchParen = { fg = colors .cyan },
16+
17+ }
18+
19+ return highligths
You can’t perform that action at this time.
0 commit comments