dein + cleanup

main
Steffen Rademacker 8 years ago
parent f76e644551
commit f628053294

@ -31,6 +31,7 @@ pip3 install neovim
curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
sh installer.sh ~/.config/nvim/dein
read -p "Press any key to continue... " -n1 -s
rm installer.sh
# install fzf
/usr/local/opt/fzf/install

@ -4,15 +4,13 @@ call dein#add('cakebaker/scss-syntax.vim', { 'on_ft': [ 'scss', 'css'] })
call dein#add('christoomey/vim-tmux-navigator')
call dein#add('cocopon/lightline-hybrid.vim')
call dein#add('editorconfig/editorconfig-vim')
" call dein#add('gcorne/vim-sass-lint')
call dein#add('haya14busa/incsearch.vim')
call dein#add('itchyny/lightline.vim')
call dein#add('itmammoth/doorboy.vim')
call dein#add('junegunn/fzf', { 'merged': 0 })
call dein#add('junegunn/fzf.vim', { 'depends': 'fzf' })
call dein#add('justinmk/vim-sneak')
call dein#add('moll/vim-node', { 'on_ft': 'javascript' })
" call dein#add('mtscout6/syntastic-local-eslint.vim', { 'on_ft': 'javascript' })
" call dein#add('scrooloose/syntastic')
call dein#add('sheerun/vim-polyglot')
call dein#add('tpope/vim-commentary')
call dein#add('tpope/vim-fugitive')
@ -21,11 +19,8 @@ call dein#add('tpope/vim-repeat')
call dein#add('tpope/vim-surround')
call dein#add('tpope/vim-unimpaired')
call dein#add('tpope/vim-vinegar')
call dein#add('tyru/open-browser.vim')
call dein#add('w0ng/vim-hybrid')
call dein#add('w0rp/ale')
call dein#add('webgefrickel/vim-snippets')
call dein#add('wellle/tmux-complete.vim')
call dein#add('itmammoth/doorboy.vim')
" test those
call dein#add('tyru/open-browser.vim')
call dein#add('w0rp/ale')

@ -1,6 +1,3 @@
filetype plugin indent on
syntax on
set autoread " Automatically read a file that has changed on disk
set backspace=indent,eol,start " Allow backspacing over everything in insert mode
set cursorline " highlight current line

@ -1,11 +1,19 @@
if &compatible
set nocompatible
endif
set langmenu=en_US.UTF-8
set runtimepath+=~/.config/nvim/dein/repos/github.com/Shougo/dein.vim
" let dein handle all the plugins and bundles
call dein#begin(expand('~/.config/nvim/dein'))
call dein#add('Shougo/dein.vim')
source ~/.config/nvim/bundles.vim
call dein#end()
filetype plugin indent on
syntax on
" load the default config and mappings
source ~/.config/nvim/config.vim
source ~/.config/nvim/autocommands.vim

Loading…
Cancel
Save