How to setup tab width for your neovim
Jing, mqjing@gmail.com
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.