migrated to vim-plug, set up intellisense et al

This commit is contained in:
Andrzej Stepien 2024-02-29 15:34:29 +01:00
parent 72d959a9a6
commit 7c18609485
1 changed files with 27 additions and 26 deletions

53
.vimrc
View File

@ -18,34 +18,35 @@ set spell
set number "for when we need to do a bit of coding" set number "for when we need to do a bit of coding"
"VUNDLE STUFF "INSTALL VIM-PLUG IF NOT ALREADY INSTALLED
filetype off let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
set rtp+=~/.vim/bundle/Vundle.vim if empty(glob(data_dir . '/autoload/plug.vim'))
call vundle#begin() silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
Plugin 'VundleVim/Vundle.vim'
Plugin 'sainnhe/gruvbox-material' call plug#begin('~/.vim/plugged')
Plugin 'dpelle/vim-LanguageTool' Plug 'sainnhe/gruvbox-material'
Plugin 'ron89/thesaurus_query.vim' Plug 'dpelle/vim-LanguageTool'
Plugin 'junegunn/goyo.vim' Plug 'ron89/thesaurus_query.vim'
Plugin 'junegunn/limelight.vim' Plug 'junegunn/goyo.vim'
Plugin 'reedes/vim-pencil' Plug 'junegunn/limelight.vim'
Plugin 'reedes/vim-wordy' Plug 'reedes/vim-pencil'
Plugin 'preservim/vim-markdown' Plug 'reedes/vim-wordy'
Plugin 'preservim/vim-lexical' Plug 'preservim/vim-markdown'
Plugin 'preservim/vim-textobj-quote' Plug 'preservim/vim-lexical'
Plugin 'preservim/vim-textobj-sentence' Plug 'preservim/vim-textobj-quote'
Plugin 'preservim/vim-wheel' Plug 'preservim/vim-textobj-sentence'
Plugin 'dbmrq/vim-ditto' Plug 'preservim/vim-wheel'
Plugin 'Raimondi/delimitMate' Plug 'dbmrq/vim-ditto'
Plugin 'vim-scripts/UniCycle' Plug 'Raimondi/delimitMate'
Plugin 'preservim/nerdtree' Plug 'vim-scripts/UniCycle'
Plugin 'tpope/vim-fugitive' Plug 'preservim/nerdtree'
Plugin 'neoclide/coc.nvim' Plug 'tpope/vim-fugitive'
Plugin 'prettier/vim-prettier' Plug 'prettier/vim-prettier'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call vundle#end() call plug#end()
filetype plugin indent on filetype plugin indent on
let mapleader="," let mapleader=","