Last active
June 7, 2023 20:40
-
-
Save sebasmonia/26ee5dc5c203b4bb46669d998d2028b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun hoagie-kmonad-start () | |
(interactive) | |
(start-process "kmonad-process" | |
"*kmonad*" | |
"kmonad" | |
"c:\\home\\.config\\kmonad\\config.kbd") | |
(message "kmonad started (•_•) ( •_•)>⌐■-■ (⌐■_■)")) | |
(defun hoagie-kmonad-stop () | |
(interactive) | |
(kill-process "kmonad-process") | |
(message "kmonad stopped (⌐■_■) (╥﹏╥)>⌐■-■ (╥﹏╥)")) | |
(global-set-key (kbd "<f5>") #'hoagie-kmonad-start) | |
(global-set-key (kbd "C-<f5>") #'hoagie-kmonad-stop) | |
(hoagie-kmonad-start) |
(defun golang-stdlib-reference ()
"Open the Go stdlib reference in EWW."
(interactive)
(hoagie-eww-readable (format "https://pkg.go.dev/%s" (read-string "Package: "))))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
go get github.com/aws/aws-sdk-go-v2
go get github.com/aws/aws-sdk-go-v2/config