diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-29 14:59:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-29 14:59:10 +0200 |
commit | 5a304b78647d1a3913cbab197ccde033ae0510cd (patch) | |
tree | 654eb1c155b568745309646e79b970e011527577 /runtime/doc/syntax.txt | |
parent | 51a2d8dc36b56125c81a085a773eb47671eec7f0 (diff) | |
parent | 024ff6b80831a27d2f6571006eb6fdf94d95f882 (diff) | |
download | rneovim-5a304b78647d1a3913cbab197ccde033ae0510cd.tar.gz rneovim-5a304b78647d1a3913cbab197ccde033ae0510cd.tar.bz2 rneovim-5a304b78647d1a3913cbab197ccde033ae0510cd.zip |
Merge #6615 from justinmk/vim-patches
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 9e4f546f64..7f4ede4124 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -4572,7 +4572,14 @@ in their own color. Doesn't work recursively, thus you can't use ":colorscheme" in a color scheme script. - After the color scheme has been loaded the + + To customize a colorscheme use another name, e.g. + "~/.vim/colors/mine.vim", and use `:runtime` to load + the original colorscheme: > + runtime colors/evening.vim + hi Statement ctermfg=Blue guifg=Blue + +< After the color scheme has been loaded the |ColorScheme| autocommand event is triggered. For info about writing a colorscheme file: > :edit $VIMRUNTIME/colors/README.txt |