.vimrc: Add comments and long names to options

This commit is contained in:
Alan Orth 2017-03-19 19:57:07 +02:00
parent 143304436a
commit a78a074ad0
1 changed files with 6 additions and 6 deletions

12
.vimrc
View File

@ -1,9 +1,9 @@
set nu
set ts=4
set expandtab
set sw=4
set bs=2
set bg=dark
set number " show line numbers
set tabstop=4 " number of visual spaces per tab
set shiftwidth=4 " number of spaces in an indent
set expandtab " tabs are spaces
set backspace=2 " backspace like in a graphical text editor
set background=dark
set incsearch
set wildmode=longest,list " change filename autocomplete to be more like bash
set mouse=v " some vim defaults to mouse=a, which sucks for copying and pasting in Xorg