@@ -38,7 +38,7 @@ Plug 'skywind3000/vim-color-patch'
38
38
Setup the patch search path:
39
39
40
40
``` VimL
41
- let g:cpatch_path = '~/.vim/cpatch '
41
+ let g:cpatch_path = '~/.vim/colors/patch '
42
42
```
43
43
44
44
And 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
48
48
49
49
#### 1) Change the line number style in "desert":
50
50
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:
52
52
53
53
``` viml
54
54
highlight! LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE
@@ -65,7 +65,7 @@ And `LineNr` in `desert` will be overrided.
65
65
66
66
#### 2) Remove all italic for Windows:
67
67
68
- edit ` ~/.vim/cpatch /__init__.vim ` :
68
+ edit ` ~/.vim/colors/patch /__init__.vim ` :
69
69
70
70
``` VimL
71
71
if has('win32') || has('win64')
@@ -79,15 +79,15 @@ The `__init__.vim` is a public script and it will be sourced for every colorsche
79
79
80
80
#### 3) Remove background colors for listchars in "monokai":
81
81
82
- edit ` ~/.vim/cpatch /monokai.vim ` :
82
+ edit ` ~/.vim/colors/patch /monokai.vim ` :
83
83
84
84
``` VimL
85
85
call cpatch#remove_background('SpecialKey')
86
86
```
87
87
88
88
#### 4) Change VertSplit style for "gruvbox":
89
89
90
- edit ` ~/.vim/cpatch /gruvbox.vim ` :
90
+ edit ` ~/.vim/colors/patch /gruvbox.vim ` :
91
91
92
92
``` VimL
93
93
hi! 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
113
113
3 ) ` {NAME}.vim `
114
114
4 ) ` {NAME}.lua `
115
115
116
- Default value: ` "~/.vim/cpatch " ` .
116
+ Default value: ` "~/.vim/colors/patch " ` .
117
117
118
118
Can accept a list or a comma separated string.
119
119
0 commit comments