neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

hi-pairs.lua (497B)


      1 if not vim.g.loaded_hiPairs then return end
      2 
      3 vim.g.loaded_matchparen = 1
      4 vim.g.hiPairs_timeout = 5
      5 vim.g.hiPairs_hl_matchPair = {
      6   ['term'] = 'underline,bold',
      7   ['cterm'] = 'bold',
      8   ['ctermfg'] = 'none',
      9   ['ctermbg'] = 'none',
     10   ['guifg'] = 'none',
     11   ['guibg'] = 'none',
     12   ['gui'] = 'bold',
     13 }
     14 vim.g.hiPairs_hl_unmatchPair = {
     15   ['term'] = 'underline,bold',
     16   ['cterm'] = 'bold',
     17   ['ctermfg'] = 'none',
     18   ['ctermbg'] = 'none',
     19   ['guifg'] = 'none',
     20   ['guibg'] = 'none',
     21   ['gui'] = 'bold',
     22 }