-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc
More file actions
40 lines (35 loc) · 696 Bytes
/
vimrc
File metadata and controls
40 lines (35 loc) · 696 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
35
36
37
38
39
40
if has("gui_running")
colorscheme desert
" hide mouse while typing
set mousehide
set guifont=Panic_Sans:h14
set background=dark
else
" Use this to enable bold, but not color
"set term=vt102
" Use this to enable color
" set term=xterm-color
" colorscheme delek
" colorscheme pablo
" colorscheme ron
colorscheme desert256
set background=dark
endif
set ruler
set textwidth=78
set backupext=.bak
set ignorecase
set smartcase
set ts=4
set shiftwidth=4
set laststatus=2
" TODO Need to disable for makefiles ...
set expandtab
set hlsearch
set showmatch
" Mercury
" filetype on
" filetype plugin on
" syntax enable
syn on
filetype plugin indent on