From d629f380357dabdf8e2cee4a5ba054c2eeccc8c1 Mon Sep 17 00:00:00 2001 From: Ben Oakes Date: Wed, 15 Jan 2025 18:47:53 +0000 Subject: [PATCH 1/3] Order Plugs --- home/.vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/.vimrc b/home/.vimrc index 4fccdea..f3d8037 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -2,10 +2,8 @@ call plug#begin('~/.vim/plugged') " Make sure you use single quotes -Plug 'https://github.com/AndrewRadev/vim-eco' -Plug 'https://github.com/MarcWeber/vim-addon-mw-utils' Plug 'https://github.com/airblade/vim-gitgutter' -Plug 'https://github.com/lifepillar/vim-solarized8' +Plug 'https://github.com/AndrewRadev/vim-eco' Plug 'https://github.com/bkad/CamelCaseMotion' Plug 'https://github.com/briancollins/vim-jst' Plug 'https://github.com/chrisbra/csv.vim' @@ -19,6 +17,8 @@ Plug 'https://github.com/kana/vim-textobj-user' Plug 'https://github.com/kchmck/vim-coffee-script' Plug 'https://github.com/keith/swift.vim' Plug 'https://github.com/kien/ctrlp.vim' +Plug 'https://github.com/lifepillar/vim-solarized8' +Plug 'https://github.com/MarcWeber/vim-addon-mw-utils' Plug 'https://github.com/mmai/wikilink' Plug 'https://github.com/nelstrom/vim-textobj-rubyblock' Plug 'https://github.com/othree/html5.vim' From dfb31264c264a9b0225ba15e1f7fc4880bdebf86 Mon Sep 17 00:00:00 2001 From: Ben Oakes Date: Wed, 15 Jan 2025 18:48:26 +0000 Subject: [PATCH 2/3] Add copilot.vim --- home/.vimrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/home/.vimrc b/home/.vimrc index f3d8037..221ce8e 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -11,6 +11,15 @@ Plug 'https://github.com/dense-analysis/ale' Plug 'https://github.com/depuracao/vim-rdoc' Plug 'https://github.com/ecomba/vim-ruby-refactoring' Plug 'https://github.com/elzr/vim-json' +# To set up copilot.vim, you need access to GitHub Copilot. +# +# Run these commands to set it up: +# +# :PlugInstall +# :Copilot setup +# +# See also: https://github.com/github/copilot.vim?tab=readme-ov-file#getting-started +Plug 'https://github.com/github/copilot.vim' Plug 'https://github.com/hashivim/vim-terraform' Plug 'https://github.com/joukevandermaas/vim-ember-hbs' Plug 'https://github.com/kana/vim-textobj-user' From aeb5de763a2572ca416bd9202d54b9cf2dcc981c Mon Sep 17 00:00:00 2001 From: Ben Oakes Date: Wed, 15 Jan 2025 18:49:54 +0000 Subject: [PATCH 3/3] It's `"` not `#` for comments --- home/.vimrc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/home/.vimrc b/home/.vimrc index 221ce8e..510ec99 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -11,14 +11,14 @@ Plug 'https://github.com/dense-analysis/ale' Plug 'https://github.com/depuracao/vim-rdoc' Plug 'https://github.com/ecomba/vim-ruby-refactoring' Plug 'https://github.com/elzr/vim-json' -# To set up copilot.vim, you need access to GitHub Copilot. -# -# Run these commands to set it up: -# -# :PlugInstall -# :Copilot setup -# -# See also: https://github.com/github/copilot.vim?tab=readme-ov-file#getting-started +" To set up copilot.vim, you need access to GitHub Copilot. +" +" Run these commands to set it up: +" +" :PlugInstall +" :Copilot setup +" +" See also: https://github.com/github/copilot.vim?tab=readme-ov-file#getting-started Plug 'https://github.com/github/copilot.vim' Plug 'https://github.com/hashivim/vim-terraform' Plug 'https://github.com/joukevandermaas/vim-ember-hbs'