From 3217db6951b1a3382b8396d90183241d4293ee43 Mon Sep 17 00:00:00 2001 From: sbenner Date: Thu, 11 Sep 2014 13:52:28 -0400 Subject: [PATCH] Add a buffer size limit to rcirc buffers --- spacemacs/packages.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spacemacs/packages.el b/spacemacs/packages.el index 453009cf8..0fd34a96d 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1366,9 +1366,10 @@ which require an initialization must be listed explicitly in the list." flyspell-mode))) :config (progn - (setq rcirc-fill-column 160) - (setq rcirc-omit-responses '("JOIN" "PART" "QUIT" "NICK" "AWAY")) - (setq rcirc-omit-threshold 20) + (setq rcirc-fill-column 160 + rcirc-buffer-maximum-lines 1024 + rcirc-omit-responses '("JOIN" "PART" "QUIT" "NICK" "AWAY") + rcirc-omit-threshold 20) (require 'rcirc-color) ;; (require 'rcirc-reconnect ;; (concat spacemacs-extensions-directory "rcirc-reconnect/rcirc-reconnect.el"))