Skip to content

Instantly share code, notes, and snippets.

View harrydt's full-sized avatar

Harry Tran harrydt

View GitHub Profile
@harrydt
harrydt / init.vim
Last active August 22, 2017 02:42
init.vim
if has('vim_starting')
set nocompatible " Be iMproved
endif
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim')
if !filereadable(vimplug_exists)
if !executable("curl")
echoerr "You have to install curl or first install vim-plug yourself!"
execute "q!"