/ Published in: Emacs Lisp
Expand |
Embed | Plain Text
;/**************************************************************** ;* Set Size of the Kill-Ring and other histories that we use constantly ;****************************************************************/ (setq kill-ring-max 500) (setq extended-command-history-max 50) (setq query-replace-history-max 50) (setq replace-string-history-max 50) (setq file-name-history-max 50) (setq replace-regex-history-max 50) (setq minibuffer-history-max 1000) (setq shell-command-history-max 1000) (setq find-file-history-max 1000)
You need to login to post a comment.
