diff options
author | ZyX <kp-pav@yandex.ru> | 2015-10-17 17:25:53 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2015-10-23 14:54:10 +0300 |
commit | 1cdc3298cfb8389b2bc3203da16abc74abb0a0c0 (patch) | |
tree | c8a68fbcb3c79fe42eff2820f71e34c7dc2afd06 /runtime/doc/mbyte.txt | |
parent | a1b0f4073deb7f50e1b7137174bcb9914c97078f (diff) | |
download | rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.tar.gz rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.tar.bz2 rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.zip |
documentation: Update documentation
Note about ~/.local/share/nvim/site used in one usr_\* file: this one talks
about user-local installation of third-party plugins, and
~/.local/share/nvim/site is the proper place for them. Most other files talk
about user own configuration and this is ~/.config.
Diffstat (limited to 'runtime/doc/mbyte.txt')
-rw-r--r-- | runtime/doc/mbyte.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/mbyte.txt b/runtime/doc/mbyte.txt index 17d96103b8..2e3a0141ac 100644 --- a/runtime/doc/mbyte.txt +++ b/runtime/doc/mbyte.txt @@ -222,7 +222,7 @@ To use a locale in Vim only, use the |:language| command: > :language ko -Put this in your ~/.vimrc file to use it always. +Put this in your |init.vim| file to use it always. Or specify $LANG when starting Vim: @@ -684,7 +684,7 @@ that works well you can use this command to see its name: > :set guifont -Then add a command to your |gvimrc| file to set 'guifont': > +Then add a command to your |ginit.vim| file to set 'guifont': > :set guifont=courier_new:h12 @@ -928,7 +928,7 @@ Cursor color when IME or XIM is on *CursorIM* This works in the same way when using XIM. You can select cursor color when status is on by using highlight group - CursorIM. For example, add these lines to your |gvimrc|: > + CursorIM. For example, add these lines to your |ginit.vim|: > if has('multi_byte_ime') highlight Cursor guifg=NONE guibg=Green |