diff --git a/book/docs/setup/editors/vim.md b/book/docs/setup/editors/vim.md index 2d12be2..c0b05bb 100644 --- a/book/docs/setup/editors/vim.md +++ b/book/docs/setup/editors/vim.md @@ -227,16 +227,16 @@ nnoremap k :CocPrev nnoremap p :CocListResume -" Custom setings +" Custom settings " Enable line numbers set number -" tab and indentation setup +" Tab and indentation setup set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab autoindent ``` The first part is `coc.nvim` plugin and the rest is configuration for a code completition. At the last we have `Custom settings` for the other useful configuration like line numbers and tab and indent setup. -Now you can enter to `vim` and execute `:PlugInstall` to install `coc.nvim`. After that you need to exit Vima and enter again to launch `coc-nvim` plugin. Next step is to configure it with vim command `:CocConfig` by entering the following: +Now you can enter to `vim` and execute `:PlugInstall` to install `coc.nvim`. After that you need to exit Vim/Neovim and enter again to launch `coc-nvim` plugin. Next step is to configure it with vim command `:CocConfig` by entering the following: ```json { "languageserver": { @@ -259,7 +259,7 @@ When you enter the first time to vim it will need to wait few minutes until code ## Keyboars Shortcuts -\ key is ussually `\` +\ key is usually `\` C_key(s) is CTRL+key(s) | Key | Description |