2016年12月7日 星期三

[neovim, tab] How to setup tab width for your neovim

How to setup tab width for your neovim

Google Doc: This Document

~/.config/nvim
" handle tab
set tabstop=2     "tab width
set shiftwidth=2  "indent size
set expandtab     "use space to instead the tab character
set smarttab


E.g.

Reference


Releated Doc

  1. [neovim, copy & paste] How to install neovim and enable copy & paste function (view)
  2. [neovim, plugin manager] How to use neovim plugin (view)
  3. [neovim, complete] How to install deoplete for code complete (view)
  4. [neovim, emmet] How to install emmet plugin for neovim frontend coding (view)