config/nvim: configure indentation

This commit is contained in:
xerus2000 2021-01-27 11:49:57 +01:00
parent 4bbafa67bb
commit 3c091511aa
2 changed files with 4 additions and 2 deletions

View File

@ -13,8 +13,7 @@ let &backupext="_" . strftime("%y%m%dT%H%M")
set wildmode=longest,list,full " Auto-completion for cmdline set wildmode=longest,list,full " Auto-completion for cmdline
set clipboard+=unnamedplus " Merge with system clipboard set clipboard+=unnamedplus " Merge with system clipboard
set shiftwidth=2 expandtab " Indentation set shiftwidth=2 expandtab " Default simple indentation
"set shiftwidth=4 tabstop = 4 " Indentation for programming
" visuals " visuals
set number relativenumber " Relative line numbering on the left set number relativenumber " Relative line numbering on the left

View File

@ -51,4 +51,7 @@ map <leader>ls :setlocal colorcolumn=81,121 nowrap<CR>
map <leader>lw :setlocal colorcolumn=81 textwidth=80<CR> map <leader>lw :setlocal colorcolumn=81 textwidth=80<CR>
map <leader>ln :setlocal colorcolumn= textwidth=0 wrap<CR> map <leader>ln :setlocal colorcolumn= textwidth=0 wrap<CR>
map <leader>t :setlocal shiftwidth=4 tabstop=4 noexpandtab<CR>
map <leader>T :setlocal shiftwidth=2 expandtab<CR>
" }}} " }}}