-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
48 lines (29 loc) · 676 Bytes
/
vimrc
File metadata and controls
48 lines (29 loc) · 676 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
41
42
43
44
45
filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
syntax on
set nocompatible
filetype plugin indent on
set hidden
set number
highlight LineNr guibg=grey
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set smartindent
set shiftround
set nojoinspaces
set ruler
set visualbell
set title
set ignorecase
set smartcase
" Note, perl automatically sets foldmethod in the syntax file
autocmd Syntax * setlocal foldmethod=syntax
autocmd Syntax * normal zR
set wildmenu
set wildmode=list:longest
set backupdir=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
set directory=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
let mapleader = ","