Skip to content

Instantly share code, notes, and snippets.

View sidouglas's full-sized avatar

Simon Douglas sidouglas

  • Sydney, Australia
View GitHub Profile
@yaoqiangpersonal
yaoqiangpersonal / .ideavimrc
Last active September 22, 2024 03:57
.ideavimrc
" 主要leader
let mapleader=' '
""" Plugins --------------------------------
set surround
set multiple-cursors
set commentary
set argtextobj
set easymotion
@servel333
servel333 / handlebars-operators.md
Created February 15, 2018 15:39
Handlebars {{#if (op ... )}} operators
@malclocke
malclocke / gist:943565
Created April 27, 2011 01:31 — forked from schacon/gist:942899
delete all remote branches that have already been merged into master
$ git branch -r --merged |
awk -F'/' '/^ *origin/{if(!match($0, /(>|master)/)){print $2}}' |
xargs git push origin --delete