Skip to content

Commit

Permalink
New bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
fergalmoran committed Sep 22, 2017
1 parent 76f07b4 commit 7156c02
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ Plugin 'Chiel92/vim-autoformat'
Plugin 'gmarik/vundle'
Plugin 'scrooloose/nerdtree'
Plugin 'tiagofumo/vim-nerdtree-syntax-highlight'
Plugin 'scrooloose/syntastic'
Plugin 'vim-syntastic/syntastic'
Plugin 'Shougo/vimproc.vim'
Plugin 'leafgarland/typescript-vim'
Plugin 'SirVer/ultisnips'
Plugin 'evanmiller/nginx-vim-syntax'
Expand Down Expand Up @@ -106,6 +107,22 @@ let g:miniBufExplForceSyntaxEnable = 1
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1

" Syntastic config
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0

" Typescript configs (this will probably slow shit to a crawl)
let g:typescript_compiler_binary = 'tsc'
let g:typescript_compiler_options = ''
autocmd QuickFixCmdPost [^l]* nested cwindow
autocmd QuickFixCmdPost l* nested lwindow

" These are the tweaks I apply to YCM's config, you don't need them but they
" might help.
" " YCM gives you popups and splits by default that some people might not
Expand Down
2 changes: 1 addition & 1 deletion bundle/vundle
Submodule vundle updated from 6437ad to 6497e3

0 comments on commit 7156c02

Please sign in to comment.