Skip to content

Instantly share code, notes, and snippets.

@nagolove
nagolove / repo-rinse.sh
Created July 21, 2019 18:46 — forked from nicktoumpelis/repo-rinse.sh
Cleans and resets a git repo and its submodules
git clean -xfd
git submodule foreach --recursive git clean -xfd
git reset --hard
git submodule foreach --recursive git reset --hard
git submodule update --init --recursive
@nagolove
nagolove / plugin.vim
Created April 29, 2019 16:54 — forked from davisdude/plugin.vim
Launch LOVE from vim
" Vim plugin for running LOVE
" Last Change: 2015 May 26
" Maintainer: Davis Claiborne <davisclaib@gmail.com>
" License: This file is placed under public domain.
let s:save_cpo = &cpo
set cpo&vim
if exists( 'g:loaded_lovelaunch' )
finish