Skip to content

Commit c3ee258

Browse files
authored
Add blink pair integration
1 parent 390bbb6 commit c3ee258

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

0 commit comments

Comments
 (0)