chiark
/
gitweb
/
~mdw
/
profile
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26e50f4
)
dot/ercrc.el: Configure automatic buffer truncation.
author
Mark Wooding
<mdw@distorted.org.uk>
Mon, 14 May 2012 15:41:04 +0000
(16:41 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Mon, 14 May 2012 15:41:04 +0000
(16:41 +0100)
Currently allows about 3000 lines of stuff based on an empirically
determined average of 60 characters per line.
dot/ercrc.el
patch
|
blob
|
blame
|
history
diff --git
a/dot/ercrc.el
b/dot/ercrc.el
index 8ccbbb8c4ae5f8aa24d9fa85f350c6a3457ac227..1c3881f91e629c44060691a0d1927da88abe92bb 100644
(file)
--- a/
dot/ercrc.el
+++ b/
dot/ercrc.el
@@
-6,9
+6,13
@@
(load "~/.erc-auth.el")
(setq erc-nick "mdw"
erc-user-full-name "Mark Wooding")
+(if (not (memq 'truncate erc-modules))
+ (setq erc-modules (cons 'truncate erc-modules)))
+
(setq erc-fill-column 76
erc-timestamp-right-column 68
- erc-fill-prefix " ")
+ erc-fill-prefix " "
+ erc-max-buffer-size (* 60 3000))
(load "~/.erc-local.el")