home
·
contact
·
privacy
projects
/
config
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add vimrc dotfile.
[config]
/
dotfiles
/
vimrc
1
" Activate syntax highlighting.
2
syntax on
3
filetype plugin on
4
5
" Don't add unsolicited final newline.
6
set binary
7
8
" Indentation rules (tabs to 4 spaces).
9
set expandtab
10
set shiftwidth=4
11
set softtabstop=4
12
13
" Backups.
14
set backup
15
set backupdir=~/.vimbackups
16
let myvar = strftime("%Y-%m-%d_%H-%M-%S")
17
let myvar = "set backupext=_". myvar
18
execute myvar