.vimrc: Add comments and long names to options
This commit is contained in:
parent
143304436a
commit
a78a074ad0
12
.vimrc
12
.vimrc
@ -1,9 +1,9 @@
|
|||||||
set nu
|
set number " show line numbers
|
||||||
set ts=4
|
set tabstop=4 " number of visual spaces per tab
|
||||||
set expandtab
|
set shiftwidth=4 " number of spaces in an indent
|
||||||
set sw=4
|
set expandtab " tabs are spaces
|
||||||
set bs=2
|
set backspace=2 " backspace like in a graphical text editor
|
||||||
set bg=dark
|
set background=dark
|
||||||
set incsearch
|
set incsearch
|
||||||
set wildmode=longest,list " change filename autocomplete to be more like bash
|
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
|
set mouse=v " some vim defaults to mouse=a, which sucks for copying and pasting in Xorg
|
||||||
|
Loading…
Reference in New Issue
Block a user