Answer the question
In order to leave comments, you need to log in
Is it possible to use two plugin installers in vim?
I decided to switch to vim.
Installed myself a couple of plugins via vim-plug.
call plug#begin('~/.vim/plugged')
"colorscheme
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle' }
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-fugitive'
Plug 'Valloric/YouCompleteMe'
"html
Plug 'mattn/emmet-vim', {'for': ['html', 'javascript', 'css']}
Plug 'othree/html5.vim',{'for': ['html', 'javascript']}
"css
Plug 'ap/vim-css-color',{'for': ['css', 'scss']}
Plug 'cakebaker/scss-syntax.vim',{'for': ['css', 'scss']}
Plug 'hail2u/vim-css3-syntax',{'for': ['css', 'scss']}
"git
Plug 'airblade/vim-gitgutter'
"search
Plug 'kien/ctrlp.vim'
"Plug 'easymotion/vim-easymotion'
"comment
Plug 'tpope/vim-commentary'
call plug#end()
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question