Skip to content

Instantly share code, notes, and snippets.

View Zakgeki's full-sized avatar
💭
Senguin Peals

Zachary Wells Zakgeki

💭
Senguin Peals
View GitHub Profile
@Zakgeki
Zakgeki / vimrc
Last active August 16, 2023 13:06
My personal vimrc
" Install vim-plug if not found
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
endif
" Run PlugInstall if there are missing plugins
autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| PlugInstall --sync | source $MYVIMRC
\| endif