-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
72 lines (56 loc) · 1.78 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"NeoBundle Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath^=/home/hugh/.vim/bundle/neobundle.vim/
" Required:
call neobundle#begin(expand('/home/hugh/.vim/bundle'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" Add or remove your Bundles here:
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'ctrlpvim/ctrlp.vim'
NeoBundle 'flazz/vim-colorschemes'
NeoBundle 'leafgarland/typescript-vim'
NeoBundle 'scrooloose/nerdcommenter'
" You can specify revision/branch/tag.
NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
NeoBundle 'Shougo/vimproc.vim', {'build' : {'linux' : 'make'}}
NeoBundle 'Quramy/tsuquyomi'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'sukima/xmledit'
NeoBundle '[email protected]:lukerandall/haskellmode-vim.git'
NeoBundle 'rust-lang/rust.vim'
NeoBundle 'racer-rust/vim-racer'
NeoBundle 'godlygeek/tabular'
NeoBundle '[email protected]:scrooloose/nerdtree.git'
NeoBundle 'google/vim-maktaba'
NeoBundle 'google/vim-codefmt'
NeoBundle 'google/vim-glaive'
" Required:
call neobundle#end()
call glaive#Install()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"End NeoBundle Scripts-------------------------
" Global copy paste
vnoremap <C-y> "+yy
vnoremap <C-v> "+p
" Style goes here
set tabstop=2
set shiftwidth=2
syntax on
set backspace=2 " Makes backspace work like most apps
set number
" Settings for haskell
let g:haddock_browser = "/usr/bin/firefox"
" NERDTree auto-panel on `vim`
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif