adding docker eshell commands
This commit is contained in:
parent
3c9e2e9d73
commit
83ef5217f3
|
@ -4498,6 +4498,10 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
|
||||||
("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1")
|
("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1")
|
||||||
("nupg" "upgrade-nix")
|
("nupg" "upgrade-nix")
|
||||||
("nupd" "update-nix")
|
("nupd" "update-nix")
|
||||||
|
("dup" "sudo docker compose up -d")
|
||||||
|
("ddown" "sudo docker compose down")
|
||||||
|
("dpull" "sudo docker compose pull")
|
||||||
|
("dlogs" "sudo docker compose logs --follow")
|
||||||
("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build")
|
("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build")
|
||||||
("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection")
|
("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection")
|
||||||
("wttr" "curl wttr.in/@home.cochrun.xyz")
|
("wttr" "curl wttr.in/@home.cochrun.xyz")
|
||||||
|
|
20
init.el
20
init.el
|
@ -3300,6 +3300,10 @@ targets."
|
||||||
("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1")
|
("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1")
|
||||||
("nupg" "upgrade-nix")
|
("nupg" "upgrade-nix")
|
||||||
("nupd" "update-nix")
|
("nupd" "update-nix")
|
||||||
|
("dup" "sudo docker compose up -d")
|
||||||
|
("ddown" "sudo docker compose down")
|
||||||
|
("dpull" "sudo docker compose pull")
|
||||||
|
("dlogs" "sudo docker compose logs --follow")
|
||||||
("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build")
|
("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build")
|
||||||
("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection")
|
("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection")
|
||||||
("wttr" "curl wttr.in/@home.cochrun.xyz")
|
("wttr" "curl wttr.in/@home.cochrun.xyz")
|
||||||
|
@ -3951,3 +3955,19 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
gcmh-verbose nil))
|
gcmh-verbose nil))
|
||||||
|
|
||||||
(setq warning-suppress-types '((comp)))
|
(setq warning-suppress-types '((comp)))
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(pdf-misc-print-program-args
|
||||||
|
'("-o media=Letter" "-o fitplot" "-o sides=two-sided-long-edge"))
|
||||||
|
'(pdf-misc-print-program-executable "lpr")
|
||||||
|
'(safe-local-variable-values '((rustic-rustfmt-args . "--edition 2021"))))
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(markdown-code-face ((t (:inherit org-block))))
|
||||||
|
'(org-modern-tag ((t :background "#9aedfe" :foreground "#282a36"))))
|
||||||
|
|
Loading…
Reference in a new issue