vim: jellybeans + gitgutter + mouse fixes

This commit is contained in:
Gabriel Ebner 2016-01-04 11:44:45 +01:00
parent f7b1e1656e
commit a4765fcf58

8
vimrc

@ -68,6 +68,7 @@ Plug 'superbrothers/vim-vimperator'
Plug 'idris-hackers/idris-vim'
Plug 'tpope/vim-fugitive' " git integration
Plug 'airblade/vim-gitgutter'
Plug 'kana/vim-textobj-user'
Plug 'rbonvall/vim-textobj-latex'
@ -101,6 +102,8 @@ Plug 'c-cube/vim-tptp'
Plug 'LaTeX-Box-Team/LaTeX-Box'
Plug 'nanotech/jellybeans.vim'
call plug#end()
filetype plugin indent on
@ -111,6 +114,10 @@ syn on " enable syntax highlighting
set hls " highlight search
set bg=dark " dark background
set mouse=
colors jellybeans
filetype plugin on
au BufNewFile,BufRead *.vala setf cs
@ -154,6 +161,7 @@ set vb " turn on the "visual bell" - which is much quie
set nobackup
se bs=2
let g:deoplete#enable_at_startup = 1
let g:ycm_filetype_blacklist = { 'sql': 1 }
let g:ycm_semantic_triggers = {'haskell' : ['.']}
let g:ycm_show_diagnostics_ui = 1