systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

commit f7bd49088a7c7e9e37be436de815404f859f6f81
parent a7a0f81136e813a0829a263268808f74efc193d5
Author: Remy Noulin <loader2x@gmail.com>
Date:   Tue, 14 Jun 2022 11:17:08 +0200

vim: show tabs and expand tabs

dotfiles/.vimrc | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

Diffstat:
Mdotfiles/.vimrc | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc @@ -120,7 +120,12 @@ filetype plugin indent on " required " show white spaces and end of line, enable: set list, disable: set nolist set listchars=eol:$,tab:>-,trail:~,extends:>,precedes:< -set nolist +set list + +" setup tabs and spaces +set tabstop=2 +set shiftwidth=2 +set expandtab map <C-n> :NERDTreeToggle<CR>