Compare commits
No commits in common. "781edd5bf27e0b8778ed5e72ea584a3e16655800" and "a1b422e29ecc5f678e256a1b9897ccde7af97f40" have entirely different histories.
781edd5bf2
...
a1b422e29e
|
@ -26,7 +26,6 @@ zsh/*
|
||||||
!tmux
|
!tmux
|
||||||
tmux/*
|
tmux/*
|
||||||
!tmux/tmux.conf
|
!tmux/tmux.conf
|
||||||
!tmux/tmux-new-project
|
|
||||||
!tmux/tmux-sessionizer
|
!tmux/tmux-sessionizer
|
||||||
!tmux/tmux-ggclone
|
!tmux/tmux-ggclone
|
||||||
!tmux/tmux-ssher
|
!tmux/tmux-ssher
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
excludesfile = ~/.config/git/gitignore
|
excludesfile = ~/.config/git/gitignore
|
||||||
editor = nvim
|
editor = nvim
|
||||||
|
[init]
|
||||||
|
defaultBranch = master
|
||||||
[include]
|
[include]
|
||||||
path = ~/.config/git/alias
|
path = ~/.config/git/alias
|
||||||
[include]
|
[include]
|
||||||
|
@ -12,5 +14,3 @@
|
||||||
[includeIf "gitdir:~/Desktop/git/git.aflabs.org/"]
|
[includeIf "gitdir:~/Desktop/git/git.aflabs.org/"]
|
||||||
path = ~/.config/git/aflabs
|
path = ~/.config/git/aflabs
|
||||||
|
|
||||||
[init]
|
|
||||||
defaultBranch = main
|
|
||||||
|
|
2
nvim
2
nvim
|
@ -1 +1 @@
|
||||||
Subproject commit b2fe47460500090114c967da48d617ce84b8b64a
|
Subproject commit b087eaa1ef08ad47fe3ea639151b3ae21d1e61c0
|
|
@ -1,7 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source "$XDG_CONFIG_HOME/zsh/scripts.zsh"
|
|
||||||
|
|
||||||
if [[ $# -eq 1 ]]; then
|
if [[ $# -eq 1 ]]; then
|
||||||
selected=$1
|
selected=$1
|
||||||
else
|
else
|
||||||
|
@ -13,4 +11,5 @@ if [[ -z $selected ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ggman clone "$selected"
|
ggman clone "$selected"
|
||||||
ggcompile
|
find -L $GGROOT -mindepth 1 -maxdepth 5 -type d -name .git -prune | xargs -n 1 dirname > "$GGROOT/compiled"
|
||||||
|
|
||||||
|
|
|
@ -1,50 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
if [[ -z ${NAME:+x} ]]; then
|
|
||||||
echo "missing name"
|
|
||||||
sleep 2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
source "$XDG_CONFIG_HOME/zsh/scripts.zsh"
|
|
||||||
|
|
||||||
read -p "name: " project_name
|
|
||||||
|
|
||||||
if [[ -z $project_name ]]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -d "$GGROOT/no-remote/$project_name" ]]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
project="$GGROOT/no-remote/$project_name"
|
|
||||||
git init $project
|
|
||||||
echo "# $project_name" >>"$project/README.md"
|
|
||||||
|
|
||||||
gitignore_template=$(
|
|
||||||
find "$GGROOT"/github.com/github/gitignore/*.gitignore -exec basename {} \; \
|
|
||||||
| sed 's/\(.*\)\.gitignore/\1/' \
|
|
||||||
| fzf --cycle --bind 'tab:toggle-up,btab:toggle-down'
|
|
||||||
)
|
|
||||||
|
|
||||||
if ! [[ -z $gitignore_template ]]; then
|
|
||||||
gitignore="$GGROOT/github.com/github/gitignore/$gitignore_template.gitignore"
|
|
||||||
echo "$gitignore"
|
|
||||||
echo "$project/.gitignore"
|
|
||||||
cat "$gitignore" >>"$project/.gitignore"
|
|
||||||
fi
|
|
||||||
|
|
||||||
license_template=$(
|
|
||||||
find "$GGROOT"/git.janezic.dev/janezicmatej/license/*.license -exec basename {} \; \
|
|
||||||
| sed 's/\(.*\)\.license/\1/' \
|
|
||||||
| fzf --cycle --bind 'tab:toggle-up,btab:toggle-down'
|
|
||||||
)
|
|
||||||
|
|
||||||
if ! [[ -z $license_template ]]; then
|
|
||||||
license="$GGROOT/git.janezic.dev/janezicmatej/license/$license_template.license"
|
|
||||||
export YEAR="$(date '+%Y')"
|
|
||||||
envsubst <"$license" >"$project/LICENSE"
|
|
||||||
fi
|
|
||||||
|
|
||||||
ggcompile
|
|
|
@ -37,4 +37,4 @@ bind-key F run-shell "tmux neww ~/.config/tmux/tmux-ssher"
|
||||||
bind-key T run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~/temp"
|
bind-key T run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~/temp"
|
||||||
bind-key R run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~"
|
bind-key R run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~"
|
||||||
bind-key G run-shell "tmux neww ~/.config/tmux/tmux-ggclone"
|
bind-key G run-shell "tmux neww ~/.config/tmux/tmux-ggclone"
|
||||||
bind-key N run-shell "tmux neww ~/.config/tmux/tmux-new-project"
|
|
||||||
|
|
|
@ -45,5 +45,3 @@ export GPG_TTY=$TTY
|
||||||
export USER_UID=$(id -u)
|
export USER_UID=$(id -u)
|
||||||
export USER_GID=$(id -g)
|
export USER_GID=$(id -g)
|
||||||
|
|
||||||
# name
|
|
||||||
export NAME="Matej Janežič"
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
|
alias s="ssh"
|
||||||
alias z="exec zsh"
|
alias z="exec zsh"
|
||||||
alias t="tmux a || tmux new-session -s $(whoami) -c ~"
|
alias t="tmux a || tmux new-session -s $(whoami) -c ~"
|
||||||
alias n=nvim_ve
|
alias n=nvim_ve
|
||||||
# alias vim=nvim_ve
|
# alias vim=nvim_ve
|
||||||
alias s="ssh-menu"
|
alias ssh-hosts="grep -P \"^Host ([^*]+)$\" $HOME/.ssh/config | sed 's/Host //'"
|
||||||
|
|
||||||
# navigation
|
# navigation
|
||||||
alias cdgit="cd $GGROOT"
|
alias cdgit="cd $GGROOT"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
|
|
||||||
function nvim_ve {
|
function nvim_ve {
|
||||||
if [[ -e $VIRTUAL_ENV && -f "$VIRTUAL_ENV/bin/activate" ]]; then
|
if [[ -e "$VIRTUAL_ENV" && -f "$VIRTUAL_ENV/bin/activate" ]]; then
|
||||||
source "$VIRTUAL_ENV/bin/activate"
|
source "$VIRTUAL_ENV/bin/activate"
|
||||||
command nvim $@
|
command nvim $@
|
||||||
deactivate
|
deactivate
|
||||||
|
@ -34,10 +35,11 @@ function afm {
|
||||||
VER=$(echo "$RES" | jq '.[] | select(.name | contains("'"$2"'")).version')
|
VER=$(echo "$RES" | jq '.[] | select(.name | contains("'"$2"'")).version')
|
||||||
# OP=$(echo "$RES" | jq '.[] | select(.name | contains("'"$2"'")).requirement?[0][0]')
|
# OP=$(echo "$RES" | jq '.[] | select(.name | contains("'"$2"'")).requirement?[0][0]')
|
||||||
# echo "$2""$(echo "$OP" | tr -d '"')""$(echo "$VER" | tr -d '"')"
|
# echo "$2""$(echo "$OP" | tr -d '"')""$(echo "$VER" | tr -d '"')"
|
||||||
echo "${2}==$(echo "$VER" | tr -d '"')"
|
echo "$2""==""$(echo "$VER" | tr -d '"')"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function nukepip {
|
function nukepip {
|
||||||
pip uninstall $(pip freeze) -y
|
pip uninstall $(pip freeze) -y
|
||||||
pip install -r $(pyenv root)/default-packages
|
pip install -r $(pyenv root)/default-packages
|
||||||
|
@ -87,6 +89,7 @@ function dps {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function get_dump {
|
function get_dump {
|
||||||
if [[ -z $1 ]]; then
|
if [[ -z $1 ]]; then
|
||||||
echo "provide ssh host"
|
echo "provide ssh host"
|
||||||
|
@ -109,8 +112,7 @@ function get_dump {
|
||||||
}
|
}
|
||||||
|
|
||||||
function ggcompile {
|
function ggcompile {
|
||||||
find -L "$GGROOT" -mindepth 1 -maxdepth 5 -type d -name .git -prune \
|
find -L $GGROOT -mindepth 1 -maxdepth 5 -type d -name .git -prune | xargs -n 1 dirname > "$GGROOT/compiled"
|
||||||
-exec dirname {} \; >"$GGROOT/compiled"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function tssh {
|
function tssh {
|
||||||
|
@ -121,18 +123,3 @@ function tssh {
|
||||||
|
|
||||||
ssh -t "$@" "command -v tmux && (tmux a || tmux new-session -s gorazd -c ~) || bash"
|
ssh -t "$@" "command -v tmux && (tmux a || tmux new-session -s gorazd -c ~) || bash"
|
||||||
}
|
}
|
||||||
|
|
||||||
function ssh-menu {
|
|
||||||
selected=$(
|
|
||||||
grep 'Host .*' ~/.ssh/config \
|
|
||||||
| grep -v '*' \
|
|
||||||
| sed 's/Host \(.*\)/\1/' \
|
|
||||||
| fzf --cycle --bind 'tab:toggle-up,btab:toggle-down'
|
|
||||||
)
|
|
||||||
|
|
||||||
if [[ -z $selected ]]; then
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
ssh "$selected"
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue