added plugins to vim

This commit is contained in:
Enrico Fasoli 2015-10-01 13:40:16 +02:00
parent 8defd1268f
commit d76d940e90

28
.nvimrc
View File

@ -1,6 +1,5 @@
" Global settings
syntax on
filetype plugin indent on
set showcmd
set ruler
set mouse=a
@ -19,3 +18,30 @@ set expandtab
" Search
set incsearch
set ignorecase
" Vundle
filetype off
set rtp+=~/.config/neovim/bundle/Vundle.vim
call vundle#begin('~/.config/neovim/bundle')
Plugin 'VundleVim/Vundle.vim'
Plugin 'kien/ctrlp.vim'
" Languages
Plugin 'kchmck/vim-coffee-script'
Plugin 'fatih/vim-go'
Plugin 'wting/rust.vim'
Plugin 'godlygeek/tabular' " dependency for markdown
Plugin 'plasticboy/vim-markdown'
call vundle#end()
filetype plugin indent on
" CtrlP
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
" Markdown
let g:vim_markdown_folding_disabled=1