about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--TODO.org17
-rw-r--r--init.el8
2 files changed, 20 insertions, 5 deletions
diff --git a/TODO.org b/TODO.org index 3d9e891..347684d 100644 --- a/TODO.org +++ b/TODO.org
@@ -14,7 +14,7 @@
14 14
15** TODO Install =el-patch=? 15** TODO Install =el-patch=?
16 16
17** TODO Look at [[https://gitlab.com/ideasman42/emacs-mode-line-idle][ideasman42 / emacs-mode-line-idle]] 17** DONE Look at [[https://gitlab.com/ideasman42/emacs-mode-line-idle][ideasman42 / emacs-mode-line-idle]]
18 18
19** TODO Look into =which-key= [[https://github.com/justbur/emacs-which-key#2017-12-13-added-which-key-enable-extended-define-key][bind naming]] 19** TODO Look into =which-key= [[https://github.com/justbur/emacs-which-key#2017-12-13-added-which-key-enable-extended-define-key][bind naming]]
20 20
@@ -69,3 +69,18 @@
69 acdw-irc/left-margin " ") 69 acdw-irc/left-margin " ")
70 line-number-mode nil))) 70 line-number-mode nil)))
71#+end_src 71#+end_src
72
73** ZNC Connecting (from #systemcrafters)
74
75#+begin_quote
76daviwil | minikN: I connect to the hostname/port of my ZNC server,
77 but the trick is that the username is the nick you want to
78 use on the server and the password is your znc username
79 and password joined with a colon, like daviwil:b4dp4ssw0rd
80 minikN | so you don't specify the network in your password? like
81 user/network:password?
82 benoitj | daviwil: nice password you have there
83 daviwil | minikN: nope, I only have one network anyway
84- acdw > daviwil: I just see *******
85 benoitj | I use two networks
86#+end_quote
diff --git a/init.el b/init.el index 215ada1..e588dd5 100644 --- a/init.el +++ b/init.el
@@ -1009,7 +1009,7 @@ successive invocations."
1009 1009
1010(setup (:straight gitignore-mode)) 1010(setup (:straight gitignore-mode))
1011 1011
1012(setup goto-addr 1012(setup (:require goto-addr)
1013 (if (fboundp #'global-goto-address-mode) 1013 (if (fboundp #'global-goto-address-mode)
1014 (global-goto-address-mode) 1014 (global-goto-address-mode)
1015 (add-hook 'after-change-major-mode-hook #'goto-address-mode))) 1015 (add-hook 'after-change-major-mode-hook #'goto-address-mode)))
@@ -1169,7 +1169,7 @@ successive invocations."
1169 w3m-link 1169 w3m-link
1170 w3m-message-link)) 1170 w3m-message-link))
1171 (link-hint-define-type type 1171 (link-hint-define-type type
1172 :open-secondary browse-url-secondary-browser-function)) 1172 :open-secondary browse-url-secondary-browser-function))
1173 1173
1174 (:option link-hint-avy-style 'at) 1174 (:option link-hint-avy-style 'at)
1175 (:global "C-;" 1175 (:global "C-;"
@@ -1179,7 +1179,7 @@ That is, a prefix argument (\\[universal-argument]) will open the
1179browser defined in `browse-url-secondary-browser-function'." 1179browser defined in `browse-url-secondary-browser-function'."
1180 (interactive "P") 1180 (interactive "P")
1181 (avy-with link-hint-open-link 1181 (avy-with link-hint-open-link
1182 (link-hint--one (if arg :open-secondary :open))))) 1182 (link-hint--one (if arg :open-secondary :open)))))
1183 1183
1184 ;; Setup for different modes. 1184 ;; Setup for different modes.
1185 ;; There has /got/ to be an easier way here! 1185 ;; There has /got/ to be an easier way here!
@@ -1350,7 +1350,7 @@ browser defined in `browse-url-secondary-browser-function'."
1350 1350
1351(setup (:straight org 1351(setup (:straight org
1352 org-contrib) 1352 org-contrib)
1353 (:also-load 'acdw-org) ; so I don't clutter up init.el 1353 (:also-load acdw-org) ; so I don't clutter up init.el
1354 (:option 1354 (:option
1355 org-adapt-indentation nil 1355 org-adapt-indentation nil
1356 org-agenda-files nil ; only until I set this up 1356 org-agenda-files nil ; only until I set this up