-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathvimrc
More file actions
34 lines (28 loc) · 495 Bytes
/
vimrc
File metadata and controls
34 lines (28 loc) · 495 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
" Switch syntax highlighting on
syntax on
" always show ruler at bottom
set ruler
" don't make foo~ files
set nobackup
" searching
set ignorecase
set smartcase
set hlsearch
set incsearch
" indentation
set autoindent
set smarttab
if has("autocmd")
filetype on
filetype indent on
filetype plugin on
endif
" whitespace
if has("multi_byte")
set encoding=utf-8
set list listchars=tab:»·,trail:·
else
set list listchars=tab:>-,trail:.
endif
" disable mouse integration
set mouse=