Notes for second vim-fundamentals course meetup
newline
another
Mahesh Subrajmanium Venkatachalam - Plugins | Installing a Theme
Hunter Phillips - Quickfix | Offline Ordering with getqflist
Andrea Wackerle - Search & Replace | Macros
Matthew Fletcher - Registers | Advanced Motions Jump, Delete, & Select | Advanced Motions: Paste & Move
Nicholas Payne - My First Vim Plugin | What Makes a Good Plugin
Zev Averbach - Harpoon | Wrap up
Plugin-manager # [1]
- get a plugin manager
- unless you are going full lua, most people use vim-plug by the great junegunn
https://github.com/junegunn/vim-plug
Install pluggged # [2]
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
call plug#end()
Install Plugins # [3]
:PlugInstall
:PlugClean
:PlugUpdate
Installing a Theme # [4]
install using plug
Plug 'ayu-theme/ayu-vim'
set the theme
set termguicolors
let ayu...