-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vimrc
26 lines (21 loc) · 901 Bytes
/
.vimrc
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
set number " Enable line numbers
syntax on " Enable syntax highlighting
set cursorline " Highlight current line
set ruler " Show the cursor position
set nocompatible " be iMproved, required
filetype off " required
" " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
" " All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" let g:ctrlp_map = '<c-p>'
" let g:ctrlp_cmd = 'CtrlP'
" map <C-n> :NERDTreeToggle<CR>