Compare commits

..

No commits in common. "f8564f4b7945f24d5f829c8dc9c2cf8d18e963a2" and "e6d62b9db712dca0d4df42f330b09706d6ea3c53" have entirely different histories.

4 changed files with 0 additions and 25 deletions

View File

@ -41,14 +41,6 @@ function musrec
end end
end end
# git stuff
abbr -a -- gs git status
abbr -a -- gl git log
abbr -a -- gc git commit -S
abbr -a -- gca git commit -aS
abbr -a -- gp git push
abbr -a --position anywhere -- gh "&& git push gh"
# problem solving # problem solving
# --------------- # ---------------
# use abbreviations instead of aliases/functions because # use abbreviations instead of aliases/functions because

View File

@ -127,7 +127,6 @@ function RunInput()
let @x = join(readfile(inputfile), "\n") .. "\n\n" let @x = join(readfile(inputfile), "\n") .. "\n\n"
Program Program
normal G"xp normal G"xp
Source
endfunction endfunction
nnoremap <silent> <leader>ri :call RunInput()<cr> nnoremap <silent> <leader>ri :call RunInput()<cr>

View File

@ -23,7 +23,5 @@ rm -rf \
.yarn \ .yarn \
.yarnrc .yarnrc
# ipython supports XDG_CONFIG just not by default
mv ~/.ipython "$XDG_CONFIG_HOME"/ipython
rmdir Downloads Desktop 2>/dev/null rmdir Downloads Desktop 2>/dev/null

View File

@ -1,14 +0,0 @@
#!/bin/sh
# ping until successful, then alert
while true; do
if ping -c 1 $1; then
echo Ping successful
notify-send -a "ping-up" "Ping is successful"
figlet Ping successful
tput bel
break
else
sleep 5
fi
done