Skip to content

Instantly share code, notes, and snippets.

View jakub-frajt's full-sized avatar

Jakub Frajt jakub-frajt

View GitHub Profile
@jakub-frajt
jakub-frajt / docker_composer.fish
Last active September 30, 2020 13:06
Fish shell function that run Composer via Docker container
function composer --description 'Run Composer via Docker container'
docker run --rm -it -v $SSH_AUTH_SOCK:/ssh-auth.sock -v $PWD:/app -e SSH_AUTH_SOCK=/ssh-auth.sock -u (id -u):(id -g) composer $argv;
end
@jakub-frajt
jakub-frajt / Default.sublime-commands
Last active October 8, 2021 19:24
Sublime Merge custom commands
[
{
"caption": "Fixup",
"command": "git",
"args": {"argv": ["commit", "--fixup", "HEAD"]}
},
{
"caption": "Stage All",
"command": "git",
"args": {"argv": ["add", "."]}