diff --git a/.nvimrc b/.nvimrc index 7df426f..b7beeb7 100644 --- a/.nvimrc +++ b/.nvimrc @@ -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 = '' +let g:ctrlp_cmd = 'CtrlP' + +" Markdown + +let g:vim_markdown_folding_disabled=1