diff options
author | Case Duckworth | 2021-10-11 18:02:27 -0500 |
---|---|---|
committer | Case Duckworth | 2021-10-11 18:02:27 -0500 |
commit | ce41b1a6a4851117eecdf771fe2a6748723dc5fe (patch) | |
tree | 5a0fe9d703924500971e3501ed10898c01ba0eef | |
parent | Enable prettify-symbols-mode (diff) | |
download | emacs-ce41b1a6a4851117eecdf771fe2a6748723dc5fe.tar.gz emacs-ce41b1a6a4851117eecdf771fe2a6748723dc5fe.zip |
Make circe prompt simpler
I'm going to see if this makes the `circe-completion-suffix' work
-rw-r--r-- | init.el | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/init.el b/init.el index 3067953..d767ffa 100644 --- a/init.el +++ b/init.el | |||
@@ -1151,33 +1151,9 @@ specific to most general, they are these: | |||
1151 | circe-format-self-say (format | 1151 | circe-format-self-say (format |
1152 | "{nick:%1$d.%1$ds} > {body}" | 1152 | "{nick:%1$d.%1$ds} > {body}" |
1153 | (- acdw-irc/left-margin 3)) | 1153 | (- acdw-irc/left-margin 3)) |
1154 | circe-network-inhibit-autoconnect '("Pissnet" "Twitch IRC") | 1154 | circe-prompt-string (format (format "%%%ds> " |
1155 | circe-network-options | 1155 | (- acdw-irc/left-margin 2)) |
1156 | `(("Libera Chat" | 1156 | " ") |
1157 | :channels ("#emacs" "#systemcrafters" "##webpals" | ||
1158 | "#emacsconf-org") | ||
1159 | :sasl-username ,circe-default-nick | ||
1160 | :sasl-password ,(acdw/make-password-fetcher | ||
1161 | :host "libera.chat")) | ||
1162 | ("Tilde Chat" :host "irc.tilde.chat" :port 6697 :use-tls t | ||
1163 | :channels ("#meta" "#bread" "#dadjokes" "#team" | ||
1164 | "#emacs" "#nsfw") | ||
1165 | :sasl-username ,circe-default-nick | ||
1166 | :sasl-password ,(acdw/make-password-fetcher | ||
1167 | :host "tilde.chat")) | ||
1168 | ("Casa" :host "m455.casa" :port 6697 :use-tls t | ||
1169 | :channels ("#basement") | ||
1170 | :sasl-username ,circe-default-nick | ||
1171 | :sasl-password ,(acdw/make-password-fetcher | ||
1172 | :host "m455.casa")) | ||
1173 | ("Pissnet" :host "piss.hmm.st" :port 6697 :use-tls t | ||
1174 | :channels ("#i-just-peed") | ||
1175 | :sasl-username ,circe-default-nick | ||
1176 | :sasl-password ,(acdw/make-password-fetcher | ||
1177 | :host "piss.hmm.st")) | ||
1178 | ("Twitch IRC" :host "irc.chat.twitch.tv" :port 6697 :use-tls t | ||
1179 | :nick "caseofducks" :user "caseofducks" | ||
1180 | :pass ,(acdw/make-password-fetcher :host "irc.chat.twitch.tv"))) | ||
1181 | circe-reduce-lurker-spam t | 1157 | circe-reduce-lurker-spam t |
1182 | circe-server-auto-join-default-type :after-auth | 1158 | circe-server-auto-join-default-type :after-auth |
1183 | circe-server-buffer-action (lambda (buf) | 1159 | circe-server-buffer-action (lambda (buf) |
@@ -1208,7 +1184,7 @@ specific to most general, they are these: | |||
1208 | #'enable-circe-color-nicks | 1184 | #'enable-circe-color-nicks |
1209 | ;; #'enable-circe-display-images | 1185 | ;; #'enable-circe-display-images |
1210 | #'enable-circe-new-day-notifier | 1186 | #'enable-circe-new-day-notifier |
1211 | #'circe-chat@set-prompt | 1187 | ;; #'circe-chat@set-prompt |
1212 | #'topsy-mode)) | 1188 | #'topsy-mode)) |
1213 | (:bind "C-c C-s" #'circe-command-SLAP) | 1189 | (:bind "C-c C-s" #'circe-command-SLAP) |
1214 | 1190 | ||