This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Setup. | |
# Add to directory in PATH (e.g. /usr/local/bin) and make it executable. | |
# $ chmod +x git-delete-merged-branches | |
git branch -d $( git branch --merged | grep -v '^\*' | grep -v 'master' ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Vintage mode should be active first. | |
# Remove Vintage package from the ignored_packages setting in your User preferences. | |
# "ignored_packages": [""] | |
# | |
# Then you just have to create a fairly simple plugin. | |
# Go to Tools > New Plugin. | |
# Save it under Packages/User/enter_command_mode_on_save.py and you're ready to go! | |
import sublime, sublime_plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
/* Keybindings for SublimeGit with Vintage mode enabled on OSX. | |
* | |
* Using Vim Fugitive keybindings when possible. | |
* Using "," as leader key. | |
* | |
* Work in progress. | |
* Definitely not a much advanced user of either Vim or Fugitive, but it's a start. | |
*/ | |
[ | |
/*** GIT STATUS ***/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim color file | |
" Converted from Textmate theme Predawn using Coloration v0.4.0 (http://github.com/sickill/coloration) | |
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset | |
endif |