-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunityvimrc
More file actions
46 lines (35 loc) · 1.22 KB
/
unityvimrc
File metadata and controls
46 lines (35 loc) · 1.22 KB
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
46
set nocompatible " 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'
" Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin)
Plugin 'tmhedberg/SimpylFold'
Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/syntastic'
Plugin 'jnurmine/Zenburn'
Plugin 'tpope/vim-dispatch'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'vim-scripts/Rename2'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
let mapleader=","
let g:ycm_autoclose_preview_window_after_completion=1
let g:ycm_register_as_syntastic_checker = 0
map <leader>yg :YcmCompleter GoToDefinitionElseDeclaration<CR>
map <leader>yr :YcmCompleter GoToReferences<CR>
let g:syntastic_enable_signs = 0
syntax on
set relativenumber
set number
set mouse=a
set ssop-=options " do not store global and local values in a session
"set ssop-=folds " do not store folds
imap jj <Esc>
vnoremap // y/<C-R>"<CR>
set hlsearch