summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/erc-config.el12
-rw-r--r--modules/test-code.el30
2 files changed, 21 insertions, 21 deletions
diff --git a/modules/erc-config.el b/modules/erc-config.el
index ddc8f7372..a5284565d 100644
--- a/modules/erc-config.el
+++ b/modules/erc-config.el
@@ -91,6 +91,18 @@
:config
(add-to-list 'erc-modules 'hl-nicks))
+;; ------------------------------ ERC Yank To Gist -----------------------------
+;; automatically create a Gist if pasting more than 5 lines
+;; this module requires https://github.com/defunkt/gist
+;; via ruby: 'gem install gist' via the aur: yay -S gist
+
+(use-package erc-yank
+ :defer 1
+ :after erc
+ :bind
+ (:map erc-mode-map
+ ("C-y" . erc-yank)))
+
;; -------------------------------- Connect IRC --------------------------------
;; convenience function to auto-connect to irc.libera.chat
diff --git a/modules/test-code.el b/modules/test-code.el
index 106044fdd..dca4b4a18 100644
--- a/modules/test-code.el
+++ b/modules/test-code.el
@@ -56,27 +56,15 @@
;; -------------------------------- Google This --------------------------------
-(use-package google-this
- :load-path "~/code/emacs-google-this/"
- :defer 1
- :bind
- ("C-h g" . 'google-this-search)
- :config
- (google-this-mode 1)
- (setq google-this-browse-url-function 'eww-browse-url))
-
-
-;; ------------------------------ ERC Yank To Gist -----------------------------
-;; automatically create a Gist if pasting more than 5 lines
-;; this module requires https://github.com/defunkt/gist
-;; via ruby: 'gem install gist' via the aur: yay -S gist
-
-(use-package erc-yank
- :defer 1
- :after erc
- :bind
- (:map erc-mode-map
- ("C-y" . erc-yank)))
+;; not working as-is
+;; (use-package google-this
+;; :load-path "~/code/emacs-google-this/"
+;; :defer 1
+;; :bind
+;; ("C-h g" . google-this-search)
+;; :config
+;; (google-this-mode 1)
+;; (setq google-this-browse-url-function 'eww-browse-url))
;; --------------------------------- Ob-Racket ---------------------------------