finally :)

This commit is contained in:
Thorn Avery 2021-04-09 14:06:59 +12:00
parent dadd5082ba
commit 530f0ec712
3 changed files with 15 additions and 22 deletions

View File

@ -34,16 +34,16 @@
"rainbow-vim-src": { "rainbow-vim-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1362455266, "lastModified": 1590654574,
"narHash": "sha256-R5daQm0G9BgRiCaR2KUfMrxy9ZBHftUrKYZgSGskiOM=", "narHash": "sha256-PH4UY+/1JFrR5C0DpFrkfTc51wUQet8ynvAPKFxbFZk=",
"owner": "kien", "owner": "luochen1990",
"repo": "rainbow_parentheses.vim", "repo": "rainbow",
"rev": "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695", "rev": "4d15633cdaf61602e1d9fd216a77fc02e0881b2d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "kien", "owner": "luochen1990",
"repo": "rainbow_parentheses.vim", "repo": "rainbow",
"type": "github" "type": "github"
} }
}, },

View File

@ -10,7 +10,7 @@
}; };
rainbow-vim-src = { rainbow-vim-src = {
url = "github:kien/rainbow_parentheses.vim"; url = "github:luochen1990/rainbow";
flake = false; flake = false;
}; };
vim-racket-src = { vim-racket-src = {

View File

@ -44,23 +44,16 @@ customPlugins: self: super: {
set backspace=eol,indent,start set backspace=eol,indent,start
set tabstop=2 softtabstop=2 expandtab shiftwidth=2 smarttab set tabstop=2 softtabstop=2 expandtab shiftwidth=2 smarttab
au VimEnter * RainbowParenthesesToggle let g:rainbow_active = 1
au Syntax * RainbowParenthesesLoadRound
au Syntax * RainbowParenthesesLoadSquare
au Syntax * RainbowParenthesesLoadBraces
let g:rbpt_colorpairs = [
\ ['brown', 'RoyalBlue3'],
\ ['Darkblue', 'SeaGreen3'],
\ ['darkgray', 'DarkOrchid3'],
\ ['darkgreen', 'firebrick3'],
\ ['darkcyan', 'RoyalBlue3'],
\ ['darkred', 'SeaGreen3'],
\ ['darkmagenta', 'DarkOrchid3'],
\ ]
imap <C-L> λ imap <C-L> λ
let g:rainbow_conf = {
\ 'ctermfgs': ['red', 'green', 'blue', 'cyan', 'magenta'],
\ 'cterms': ['bold']
\}
''; '';
}; };
}; };