From 5f525406afda600e6b531297b07afae92ae289bb Mon Sep 17 00:00:00 2001 From: Luis Vasconcellos Date: Fri, 5 Sep 2014 20:55:22 -0300 Subject: [PATCH] Change the order of colors --- plugin/interestingwords.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/interestingwords.vim b/plugin/interestingwords.vim index 40e65e5..bcb755c 100644 --- a/plugin/interestingwords.vim +++ b/plugin/interestingwords.vim @@ -79,11 +79,11 @@ function! UncolorAllWords() endif endfunction -hi def InterestingWord1 guifg=#000000 ctermfg=16 guibg=#ffa724 ctermbg=214 -hi def InterestingWord2 guifg=#000000 ctermfg=16 guibg=#aeee00 ctermbg=154 -hi def InterestingWord3 guifg=#000000 ctermfg=16 guibg=#ff0000 ctermbg=121 +hi def InterestingWord1 guifg=#000000 ctermfg=16 guibg=#aeee00 ctermbg=154 +hi def InterestingWord2 guifg=#000000 ctermfg=16 guibg=#ff0000 ctermbg=121 +hi def InterestingWord3 guifg=#000000 ctermfg=16 guibg=#0000ff ctermbg=211 hi def InterestingWord4 guifg=#000000 ctermfg=16 guibg=#b88823 ctermbg=137 -hi def InterestingWord5 guifg=#000000 ctermfg=16 guibg=#0000ff ctermbg=211 +hi def InterestingWord5 guifg=#000000 ctermfg=16 guibg=#ffa724 ctermbg=214 hi def InterestingWord6 guifg=#000000 ctermfg=16 guibg=#ff2c4b ctermbg=222 nnoremap K :call InterestingWords()