diff --git a/vimrc b/vimrc index 9acd41f..1e1c92d 100644 --- a/vimrc +++ b/vimrc @@ -11,44 +11,45 @@ Plug 'tpope/vim-fugitive' " File explorer Plug 'scrooloose/nerdtree' -" Ansible syntax highlight -Plug 'pearofducks/ansible-vim' -Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'} - -" Blade syntax highlight -Plug 'xsbeats/vim-blade' - -" Solarized theme -Plug 'altercation/vim-colors-solarized' - -" HTML 5 template -Plug 'othree/html5.vim' - -" Vim Airline -Plug 'vim-airline/vim-airline' - -" Vim Airline -Plug 'vim-airline/vim-airline-themes' - -" Vim-latexsuite -Plug 'vim-latex/vim-latex' - " nerdtree git plugin Plug 'Xuyuanp/nerdtree-git-plugin' -" Devicons -Plug 'ryanoasis/vim-devicons' - -Plug 'hashivim/vim-terraform' +" Ansible syntax highlight +Plug 'pearofducks/ansible-vim' " ALE - linting, fixing and completion Plug 'dense-analysis/ale' +" Blade syntax highlight +Plug 'xsbeats/vim-blade' + +" HTML 5 template +Plug 'othree/html5.vim' + +" Vim-latexsuite +Plug 'vim-latex/vim-latex' + +Plug 'hashivim/vim-terraform' + " Rust Plug 'rust-lang/rust.vim' +" Devicons +Plug 'ryanoasis/vim-devicons' + +" Vim Airline +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' + +" Solarized theme +Plug 'altercation/vim-colors-solarized' + " Conqueror of Completion Plug 'neoclide/coc.nvim', {'branch': 'release'} +Plug 'josa42/coc-sh', { 'do': 'yarn install --frozen-lockfile' } +Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'} +Plug 'fannheyward/coc-pyright', { 'do': 'yarn install --frozen-lockfile' } +Plug 'fannheyward/coc-rust-analyzer', { 'do': 'yarn install --frozen-lockfile' } " Vim-plug configuration end call plug#end()