-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_vimrc
More file actions
40 lines (32 loc) · 696 Bytes
/
Copy path_vimrc
File metadata and controls
40 lines (32 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
filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
filetype plugin indent on
syntax on
let mapleader = ","
set modelines=0
set nocompatible
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set ruler
set encoding=utf-8
nnoremap / /\v
vnoremap / /\v
set ignorecase
set smartcase
set incsearch
set showmatch
set hlsearch
nnoremap <leader><space> :noh<cr>
"Remap omni-completion to ctrl-space
inoremap <C-space> <C-x><C-o>
"Remap F8 to taglist toggle
nnoremap <silent> <F8> :TlistToggle<CR>
"Remap w to do window commands
nnoremap <leader>w <C-w>
" Setup folds
set foldlevelstart=99 " All folds open
colorscheme cthulhian
source ~/.vimrc.local