diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-08-19 11:49:08 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-08-19 11:49:08 +0200 |
| commit | 8b3c00f0158e82052e527d9cfa977f139939cfb6 (patch) | |
| tree | 349e8281622303e9ab02ea2cbe7f50fe5c8e9b5b | |
| parent | bb2ada030401a37253e578c32fdd1e6762df36e5 (diff) | |
Remove lazy loading as recommended by the plug author
| -rw-r--r-- | .vimrc | 30 |
1 files changed, 13 insertions, 17 deletions
@@ -1,23 +1,20 @@ -if has('python3') - silent! python3 1 -endif "====== Plug Required Block and plugins set nocompatible filetype off call plug#begin('~/.vim/bundle') Plug 'editorconfig/editorconfig-vim' Plug 'tpope/vim-fugitive' -Plug 'tpope/vim-rails', { 'for': 'ruby' } -Plug 'tpope/vim-endwise', { 'for': 'ruby' } +Plug 'tpope/vim-rails' +Plug 'tpope/vim-endwise' Plug 'sheerun/vim-polyglot' -Plug 'junegunn/gv.vim', { 'on': 'GV' } +Plug 'junegunn/gv.vim' Plug 'junegunn/limelight.vim' -Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } +Plug 'junegunn/goyo.vim' Plug 'vim-scripts/bufexplorer.zip' -" Plug 'vim-scripts/indentpython.vim', { 'for': 'python' } +" Plug 'vim-scripts/indentpython.vim' Plug 'ycm-core/YouCompleteMe', { \ 'do': '/usr/local/bin/python3 ./install.py --clangd-completer --ts-completer --rust-completer' } -Plug 'Valloric/MatchTagAlways', { 'for': 'html' } +Plug 'Valloric/MatchTagAlways' Plug 'scrooloose/nerdcommenter' Plug 'scrooloose/nerdtree' Plug 'ctrlpvim/ctrlp.vim' @@ -26,18 +23,17 @@ Plug 'SirVer/ultisnips' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'airblade/vim-gitgutter' -Plug 'ngmy/vim-rubocop', { 'for': 'ruby' } +Plug 'ngmy/vim-rubocop' Plug 'honza/vim-snippets' Plug 'majutsushi/tagbar' Plug 'kkoomen/vim-doge' -Plug 'nvie/vim-flake8', { 'for': 'python' } -Plug 'leafgarland/typescript-vim', { 'for': 'typescript' } -Plug 'Quramy/tsuquyomi', { 'for': 'typescript' } -Plug 'hashivim/vim-terraform', { 'for' : 'terraform' } -Plug 'juliosueiras/vim-terraform-completion', { 'for' : 'terraform' } +Plug 'nvie/vim-flake8' +Plug 'leafgarland/typescript-vim' +Plug 'Quramy/tsuquyomi' +Plug 'hashivim/vim-terraform' +Plug 'juliosueiras/vim-terraform-completion' Plug 'prettier/vim-prettier', { - \ 'do': 'yarn install', - \ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'yaml', 'html'] } + \ 'do': 'yarn install' } call plug#end() syntax on filetype plugin indent on |
