Skip to content

Commit

Permalink
Minor updates to _vimrc
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishb committed Jun 21, 2018
1 parent e61171d commit b32e197
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion _vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ 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'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" Python auto-completion plugin.
Bundle 'davidhalter/jedi-vim'
let g:jedi#popup_on_dot = 0
Expand Down Expand Up @@ -168,3 +169,14 @@ Bundle "naseer/logcat"
au BufNewFile,BufRead *.logcat set filetype=logcat
Bundle "tpope/vim-git"
au FileType gitcommit set spell
Plugin 'jparise/vim-graphql'

Plugin 'udalov/kotlin-vim'
au BufNewFile,BufRead *.kt set filetype=kotlin
au BufNewFile,BufRead *.kts set filetype=kotlin

" Ignore whitespaces in vimdiff
if &diff
" diff mode
set diffopt+=iwhite
endif

0 comments on commit b32e197

Please sign in to comment.