update
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
/home/tomas/bin/dev "$@" 2>&1
|
/home/tomas/bin/flow "$@" 2>&1
|
||||||
exit_code=$?
|
exit_code=$?
|
||||||
|
|
||||||
if [ $exit_code -ne 0 ]; then
|
if [ $exit_code -ne 0 ]; then
|
||||||
|
|||||||
@@ -97,6 +97,7 @@ DEFAULT_REGISTRY="registry.tomastm.com"
|
|||||||
DEFAULT_TAG="latest"
|
DEFAULT_TAG="latest"
|
||||||
PROJECT_DIR="$HOME/projects"
|
PROJECT_DIR="$HOME/projects"
|
||||||
PROJECT_ABBR="p"
|
PROJECT_ABBR="p"
|
||||||
|
CONTAINER_HOME="/home/dev"
|
||||||
|
|
||||||
fail() {
|
fail() {
|
||||||
printf 'Error: %b\n' "$*" >&2
|
printf 'Error: %b\n' "$*" >&2
|
||||||
|
|||||||
@@ -14,6 +14,13 @@
|
|||||||
[remote]
|
[remote]
|
||||||
pushDefault = origin
|
pushDefault = origin
|
||||||
[alias]
|
[alias]
|
||||||
amend = commit -a --amend --no-edit
|
amend = commit --amend --no-edit
|
||||||
rename = branch -m
|
rename = branch -m
|
||||||
|
st = status
|
||||||
|
lg = log --oneline --graph --decorate --all
|
||||||
|
lga = log --oneline --graph --decorate --all --author=you
|
||||||
|
unstage = reset HEAD
|
||||||
|
last = log -1 HEAD
|
||||||
|
tags = tag -l
|
||||||
|
undo = reset --mixed HEAD~1
|
||||||
|
|
||||||
|
|||||||
Submodule config/shared/nvim updated: 4419f2e5f3...70486dda84
@@ -63,6 +63,6 @@ bind r source-file ~/.tmux.conf \; display "Reloaded!"
|
|||||||
unbind d
|
unbind d
|
||||||
bind e detach
|
bind e detach
|
||||||
|
|
||||||
bind d command-prompt -I "dev " 'run-shell "/home/tomas/bin/dev-tmux-wrapper.sh %1 --from #{session_name}"'
|
bind d command-prompt -I "flow " 'run-shell "/home/tomas/bin/dev-tmux-wrapper.sh %1 --from #{session_name}"'
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -49,3 +49,7 @@ alias ll='ls -lF'
|
|||||||
alias lla='ll -a'
|
alias lla='ll -a'
|
||||||
alias ld='ls -ld */'
|
alias ld='ls -ld */'
|
||||||
|
|
||||||
|
alias ga='git add'
|
||||||
|
alias gcm='git commit -m'
|
||||||
|
alias gp='git push'
|
||||||
|
alias gst='git status'
|
||||||
|
|||||||
Reference in New Issue
Block a user