forked from ashishb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_vimrc
170 lines (169 loc) · 5.68 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
set tabstop=2
" Sets the text width in the file to 80 characters.
" Leads to automatic line breaks after 80 characters.
set textwidth=80
set shiftwidth=2
"This is for python code.
set foldmethod=indent
set foldlevel=20
set expandtab
set hlsearch
set incsearch
" Show line numbers.
set number
" Enable mouse.
set mouse=a
" Use system clipboard.
set clipboard=unnamed
" show context above/below cursorline.
set scrolloff=3
syntax on
" The new regex engine crashes with syntax on, force old engine for now.
" https://www.reddit.com/r/vim/comments/22cxmp/vim_74_crashes_when_syntax_is_turned_on/cglpo5u
set regexpengine=1
" watch for file changes
set autoread
filetype indent plugin on
match ErrorMsg '\%>80v.\+'
"Show matching parentheses
set showmatch
" Use F2 to toggle paste mode.
set pastetoggle=<F2>
" Enable per-directory .vimrc files and disable unsafe commands in them.
set exrc
" Commented since this does not seem to work due to plugins.
" set secure
" NERD Tree mapped to F3.
nmap <silent> <special> <F3> :NERDTreeToggle<RETURN>
let NERDChristmasTree=1
let NERDTreeHighlightCursorline=1
let NERDTreeShowBookmarks=1
let NERDTreeShowHidden=1
let NERDTreeQuitOnOpen=1
" Map \\<Enter> to hide highlight.
map <silent> <leader><cr> :noh<cr>
" Auto complete functions.
set cf
" Aut complete vim commands.
set wildmenu
set wildmode=list:longest,full
" Turn off annoying bell.
set visualbell
" https://stackoverflow.com/questions/3534028/mac-terminal-vim-will-only-use-backspace-when-at-the-end-of-a-line
set backspace=indent,eol,start
" For GNU/Linux
set rtp+=/usr/local/lib/python2.7/dist-packages/Powerline-beta-py2.7.egg/powerline/bindings/vim/
" For Mac
set rtp+=/Library/Python/2.7/site-packages/powerline/bindings/vim
" Always show statusline
set laststatus=2
" Use 256 colours (Use this setting only if your terminal supports 256
" colours)
set t_Co=256
cnoremap sudow w !sudo tee % >/dev/null
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Use airline (powerline installation is weird and rarely works).
Bundle 'bling/vim-airline'
" Python auto-completion plugin.
Bundle 'davidhalter/jedi-vim'
let g:jedi#popup_on_dot = 0
let g:jedi#use_splits_not_buffers = "bottom"
" Git wrapper for vim.
Bundle 'tpope/vim-fugitive'
" Syntax checking.
" Bundle 'scrooloose/syntastic'
" let g:syntastic_java_javac_classpath = '/usr/local/Cellar/android-sdk/22.6.2/platforms/android-19/android.jar'
" For snippets.
" vim-addon-mw-utils and tlib_vim are needed by snipmate.
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "garbas/vim-snipmate"
" An awesome collection of snippets.
Bundle "honza/vim-snippets"
" Enable rainbow-colored parentheses.
Bundle "kien/rainbow_parentheses.vim"
au VimEnter * RainbowParenthesesToggle
au Syntax * RainbowParenthesesLoadRound
au Syntax * RainbowParenthesesLoadSquare
au Syntax * RainbowParenthesesLoadBraces
" Disable SearchComplete - it is buggy and interferes with ability to arrow
" up/down the search histroy.
" Enable tab based auto-completion in search command.
" Bundle "SearchComplete"
" Shows the yanks with YRshow command.
Bundle "YankRing.vim"
" Allows arbitrary navigation using \\w-followed-by-highlighted-char.
Bundle "Lokaltog/vim-easymotion"
" Not used for now.
" " Enable language checking with LanguageToolCheck command.
" Bundle "LanguageTool"
" let g:languagetool_jar=$HOME . "/.vim/LanguageTool-2.2/languagetool-standalone.jar"
" Bundle for CSS coloring.
Bundle "skammer/vim-css-color"
" Displays CTags in side bar.
Bundle "majutsushi/tagbar"
nmap <F8> :TagbarToggle<CR>
Bundle "altercation/vim-colors-solarized"
" solarized looks good on Mac (not on Linux)
let s:uname = system("echo -n \"$(uname)\"")
if s:uname == "Darwin"
colorscheme solarized
else
colorscheme default
endif
set background=dark
" Show indentation clearly.
Bundle 'Yggdroot/indentLine'
Bundle "eventualbuddha/vim-protobuf"
Bundle "rmanalan/jshint.vim"
Bundle "pangloss/vim-javascript"
Bundle "nathanaelkane/vim-indent-guides"
let g:indentLine_char = '|'
let g:indent_guides_enable_on_vim_startup = 1
let g:indent_guides_auto_colors = 0
let g:indentLine_color_light = 1
Bundle "airblade/vim-gitgutter"
let g:gitgutter_max_signs=10000
" Fix for gitgutter on solarized theme
" https://github.com/airblade/vim-gitgutter/issues/164
highlight clear SignColumn
highlight GitGutterAdd ctermfg=darkgreen
highlight GitGutterChange ctermfg=yellow
highlight GitGutterDelete ctermfg=red
highlight GitGutterChangeDelete ctermfg=yellow
" Commented since none of this seems to work for now.
" " For android development.
" Robo is probably obsolete and broken.
" Bundle "robo"
" Bundle "bpowell/vim-android"
" "Added by android-vim:
" set tags+=/Users/ashishbhatia/.vim/tags
" Bundle 'vim-scripts/javacomplete'
" autocmd Filetype java setlocal omnifunc=javacomplete#Complete
" let g:SuperTabDefaultCompletionType = 'context'
" autocmd Filetype java setlocal omnifunc=javacomplete#CompleteParamsInfo
" setlocal completefunc=javacomplete#CompleteParamsInfo
Bundle "akhaku/vim-java-unused-imports"
" JSON syntax coloring.
au BufNewFile,BufRead *.json set filetype=json
" Smali syntax coloring
au BufNewFile,BufRead *.smali set filetype=smali
Bundle "elzr/vim-json"
Bundle "tpope/vim-markdown"
" Groovy syntax highlighting
Bundle "vim-scripts/groovy.vim"
" gradle syntax highlighting
au BufNewFile,BufRead *.gradle set filetype=groovy
" aidl syntax highlighting
au BufNewFile,BufRead *.aidl set filetype=java
" Highlight trailing whitespace.
highlight ExtraWhitespace ctermbg=red guibg=red
" let g:vjde_completion_key='<c-space>'
" let g:vjde_install_path='/Users/ashishb/src/dotfiles/_vim/bundle/Vim-JDE/'
" Bundle "Vim-JDE"
" Bundle "Valloric/YouCompleteMe"
Bundle "naseer/logcat"
au BufNewFile,BufRead *.logcat set filetype=logcat
Bundle "tpope/vim-git"
au FileType gitcommit set spell