Aggiornato correttamente elenco plugin.

This commit is contained in:
Emiliano Vavassori 2023-05-02 00:57:13 +02:00
parent 78cc753658
commit 3fb9e9093a
1 changed files with 27 additions and 26 deletions

53
vimrc
View File

@ -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()