🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

plugins: use `blink.pairs` instead of `rainbow-delimiters`

robin fc7f6504 f3baaba8

+34 -11
+28
config/config/blink.pairs.lua
··· 1 + require("blink.pairs").setup({ 2 + mappings = { 3 + enabled = false, 4 + }, 5 + highlights = { 6 + enabled = true, 7 + cmdline = true, 8 + groups = { 9 + "rainbow.1", 10 + "rainbow.2", 11 + "rainbow.3", 12 + "rainbow.4", 13 + "rainbow.5", 14 + "rainbow.6", 15 + }, 16 + unmatched_group = "", 17 + -- highlights matching pairs under the cursor 18 + matchparen = { 19 + enabled = true, 20 + -- known issue where typing won't update matchparen highlight, disabled by default 21 + cmdline = false, 22 + -- also include pairs not on top of the cursor, but surrounding the cursor 23 + include_surrounding = false, 24 + group = "BlinkPairsMatchParen", 25 + priority = 250, 26 + }, 27 + }, 28 + })
+5 -11
config/lua/ivy/plugins/init.lua
··· 35 35 event = "UIEnter", 36 36 }, 37 37 38 + { 39 + "blink.pairs", 40 + event = "UIEnter", 41 + }, 42 + 38 43 -- tree view 39 44 { 40 45 "neo-tree.nvim", ··· 362 367 -- useful to not show trailing whitespace where it usually doesn't matter. 363 368 only_in_normal_buffers = true, 364 369 }) 365 - end, 366 - }, 367 - 368 - -- lsp 369 - { 370 - "rainbow-delimiters.nvim", 371 - event = "UIEnter", 372 - before = function() 373 - vim.g.rainbow_delimiters = { 374 - blacklist = { "markdown", "markdown_inline", "help" }, 375 - } 376 370 end, 377 371 }, 378 372
+1
pkgs/ivy/package.nix
··· 188 188 189 189 # extra plugsns beacuse they often fail or need extra steps 190 190 vimPlugins.blink-cmp 191 + vimPlugins.blink-pairs 191 192 (vimPlugins.cord-nvim.overrideAttrs { 192 193 doCheck = false; 193 194 })