forked from mikecanz/env
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
35 lines (29 loc) · 653 Bytes
/
.vimrc
File metadata and controls
35 lines (29 loc) · 653 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
set bg=dark
set history=1000
set ignorecase
set smartcase
set title
set scrolloff=3
set backupdir=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
set directory=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
set ruler
set showmatch
set incsearch
set hlsearch
set noai
set tabstop=4
set shiftwidth=4
set expandtab
syntax on
filetype on
filetype plugin on
filetype indent off
"" Highlight search terms...
set hlsearch
set incsearch " ...dynamically as they are typed.
set laststatus=2
let g:buftabs_in_statusline=1
highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%121v.*/
map ,pt <ESC>:%! perltidy<CR>
map ,ptv <ESC>:'<,'>! perltidy<CR>