remove old plugins

This commit is contained in:
James Dixon 2020-05-12 19:18:50 -04:00
parent a96e8b55ef
commit 89056915d1

View File

@ -4,6 +4,7 @@
" \_/ |_|_| |_| |_|_| \___| " \_/ |_|_| |_| |_|_| \___|
"(((((((((((( general settings )))))))))))) "(((((((((((( general settings ))))))))))))
set nocompatible
"tab/indent "tab/indent
set tabstop=4 set tabstop=4
@ -103,6 +104,7 @@ filetype off
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
"## vim plug ## "## vim plug ##
Plug 'junegunn/vim-plug' Plug 'junegunn/vim-plug'
"== general ==
"## quality of life ## "## quality of life ##
Plug 'tpope/vim-surround' Plug 'tpope/vim-surround'
Plug 'tpope/vim-commentary' Plug 'tpope/vim-commentary'
@ -110,24 +112,20 @@ call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-rsi' Plug 'tpope/vim-rsi'
Plug 'tpope/vim-eunuch' Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-repeat' Plug 'tpope/vim-repeat'
"## editorconfig ##
Plug 'editorconfig/editorconfig-vim'
"## git ## "## git ##
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
"## terminal and tmux integration ## "## editorconfig ##
Plug 'tmux-plugins/vim-tmux-focus-events' Plug 'editorconfig/editorconfig-vim'
Plug 'roxma/vim-tmux-clipboard' "## colors, highlights and indents ##
Plug 'tpope/vim-tbone' Plug 'machakann/vim-highlightedyank'
Plug 'wincent/terminus'
"## language specific ## "== language specific ==
"javascript/css/html "javascript/css/html
Plug 'pangloss/vim-javascript' Plug 'pangloss/vim-javascript'
Plug 'mattn/emmet-vim' Plug 'mattn/emmet-vim'
"go "go
Plug 'fatih/vim-go' Plug 'fatih/vim-go'
"## colors, highlights and indents ##
Plug 'machakann/vim-highlightedyank'
"## linting ## "## linting ##
Plug 'w0rp/ale' Plug 'w0rp/ale'
call plug#end() call plug#end()