diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-10-25 22:38:23 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-10-25 22:38:23 -0400 |
commit | 1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0 (patch) | |
tree | 7495d3f50b897e74fc4597d061d427a4e9b1ae36 /runtime/doc/mbyte.txt | |
parent | de4cb766ca381c09fd3f938136c1932ebf008f63 (diff) | |
parent | 42047acb4f07c689936b051864c6b4448b1b6aa1 (diff) | |
download | rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.tar.gz rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.tar.bz2 rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.zip |
Merge pull request #3470 from ZyX-I/pr-3198
XDG base directory specification support
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 |