Initial commit
This excempts my two emacs configurations for spacemacs and doom-emacs. THere are still credentials in plaintext and I need to solve how to store those in git without the credentials.
This commit is contained in:
3
config/fish/functions/curln.fish
Normal file
3
config/fish/functions/curln.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function curln
|
||||
gpg --batch -q -d ~/.netrc.gpg | curl --netrc-file /dev/stdin $argv
|
||||
end
|
||||
3
config/fish/functions/e.fish
Normal file
3
config/fish/functions/e.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function e
|
||||
emacsclient --no-wait $argv
|
||||
end
|
||||
5
config/fish/functions/el8clog.fish
Normal file
5
config/fish/functions/el8clog.fish
Normal file
@ -0,0 +1,5 @@
|
||||
function el8log
|
||||
pushd ~/devel/elationemr/hippo/
|
||||
docker-compose logs --tail=50 -f celery
|
||||
popd
|
||||
end
|
||||
5
config/fish/functions/el8down.fish
Normal file
5
config/fish/functions/el8down.fish
Normal file
@ -0,0 +1,5 @@
|
||||
function el8down
|
||||
pushd ~/devel/elationemr/hippo
|
||||
docker-compose down
|
||||
popd
|
||||
end
|
||||
5
config/fish/functions/el8log.fish
Normal file
5
config/fish/functions/el8log.fish
Normal file
@ -0,0 +1,5 @@
|
||||
function el8log
|
||||
pushd ~/devel/elationemr/hippo/
|
||||
docker-compose logs --tail=50 -f hippo
|
||||
popd
|
||||
end
|
||||
5
config/fish/functions/el8up.fish
Normal file
5
config/fish/functions/el8up.fish
Normal file
@ -0,0 +1,5 @@
|
||||
function el8up
|
||||
pushd ~/devel/elationemr/hippo
|
||||
docker-compose up -d
|
||||
popd
|
||||
end
|
||||
3
config/fish/functions/getWanIp.fish
Normal file
3
config/fish/functions/getWanIp.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function getWanIp
|
||||
dig +short myip.opendns.com @resolver1.opendns.com
|
||||
end
|
||||
3
config/fish/functions/passe.fish
Normal file
3
config/fish/functions/passe.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function passe
|
||||
pass -c elation/$argv
|
||||
end
|
||||
3
config/fish/functions/passp.fish
Normal file
3
config/fish/functions/passp.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function passp
|
||||
pass -c personal/$argv
|
||||
end
|
||||
5
config/fish/functions/publish_sites.fish
Normal file
5
config/fish/functions/publish_sites.fish
Normal file
@ -0,0 +1,5 @@
|
||||
function publish_sites
|
||||
pushd ~/sites
|
||||
make publish
|
||||
popd
|
||||
end
|
||||
3
config/fish/functions/rechunk.fish
Normal file
3
config/fish/functions/rechunk.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function rechunk
|
||||
brew services restart chunkwm
|
||||
end
|
||||
6
config/fish/functions/update_email.fish
Normal file
6
config/fish/functions/update_email.fish
Normal file
@ -0,0 +1,6 @@
|
||||
function update_email
|
||||
notmuch search --output=files tag:deleted | tr '\n' '\0' | xargs -0 -L 1 rm
|
||||
notmuch new
|
||||
mbsync -a
|
||||
notmuch new
|
||||
end
|
||||
Reference in New Issue
Block a user