@@ -38,7 +38,7 @@ Plug 'skywind3000/vim-color-patch'
3838Setup the patch search path:
3939
4040``` VimL
41- let g:cpatch_path = '~/.vim/cpatch '
41+ let g:cpatch_path = '~/.vim/colors/patch '
4242```
4343
4444And script with the same name will be loaded in this locations after ` :color xxx ` command.
@@ -48,7 +48,7 @@ And script with the same name will be loaded in this locations after `:color xxx
4848
4949#### 1) Change the line number style in "desert":
5050
51- create a new file named ` desert.vim ` in the ` ~/.vim/cpatch ` folder:
51+ create a new file named ` desert.vim ` in the ` ~/.vim/colors/patch ` folder:
5252
5353``` viml
5454highlight! LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE
@@ -65,7 +65,7 @@ And `LineNr` in `desert` will be overrided.
6565
6666#### 2) Remove all italic for Windows:
6767
68- edit ` ~/.vim/cpatch /__init__.vim ` :
68+ edit ` ~/.vim/colors/patch /__init__.vim ` :
6969
7070``` VimL
7171if has('win32') || has('win64')
@@ -79,15 +79,15 @@ The `__init__.vim` is a public script and it will be sourced for every colorsche
7979
8080#### 3) Remove background colors for listchars in "monokai":
8181
82- edit ` ~/.vim/cpatch /monokai.vim ` :
82+ edit ` ~/.vim/colors/patch /monokai.vim ` :
8383
8484``` VimL
8585call cpatch#remove_background('SpecialKey')
8686```
8787
8888#### 4) Change VertSplit style for "gruvbox":
8989
90- edit ` ~/.vim/cpatch /gruvbox.vim ` :
90+ edit ` ~/.vim/colors/patch /gruvbox.vim ` :
9191
9292``` VimL
9393hi! VertSplit term=reverse ctermfg=239 ctermbg=233 guifg=#64645e guibg=#211F1C
@@ -113,7 +113,7 @@ This plugin will try to find scripts located in the directory specified by `g:c
1131133 ) ` {NAME}.vim `
1141144 ) ` {NAME}.lua `
115115
116- Default value: ` "~/.vim/cpatch " ` .
116+ Default value: ` "~/.vim/colors/patch " ` .
117117
118118Can accept a list or a comma separated string.
119119
0 commit comments