Disable auto-fill-mode and company-mode in IRC buffers
Why? - `company-mode` is too noisy in IRC buffers. - `auto-fill-mode` inserts newline characters that end up each being their own message, which means that I make more noise than I should in IRC.
This commit is contained in:
parent
fb51c8b458
commit
b6e9952889
1 changed files with 3 additions and 0 deletions
|
@ -148,6 +148,9 @@
|
||||||
(irc/message
|
(irc/message
|
||||||
(string/format "Current IRC channel: %s" (cycle/current cycle))))))
|
(string/format "Current IRC channel: %s" (cycle/current cycle))))))
|
||||||
|
|
||||||
|
(add-hook 'erc-mode-hook (disable auto-fill-mode))
|
||||||
|
(add-hook 'erc-mode-hook (disable company-mode))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Keybindings
|
;; Keybindings
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
Loading…
Reference in a new issue