added plugins to vim
This commit is contained in:
parent
8defd1268f
commit
d76d940e90
28
.nvimrc
28
.nvimrc
@ -1,6 +1,5 @@
|
|||||||
" Global settings
|
" Global settings
|
||||||
syntax on
|
syntax on
|
||||||
filetype plugin indent on
|
|
||||||
set showcmd
|
set showcmd
|
||||||
set ruler
|
set ruler
|
||||||
set mouse=a
|
set mouse=a
|
||||||
@ -19,3 +18,30 @@ set expandtab
|
|||||||
" Search
|
" Search
|
||||||
set incsearch
|
set incsearch
|
||||||
set ignorecase
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user