[Emacs] Bump kill-ring-max to 1000

This commit is contained in:
Ivan Malison 2016-09-30 15:47:55 -07:00
parent e597d69cd8
commit 35663fe1c8
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -999,6 +999,10 @@ whenever there is an error.
(setq display-time-format "%a|%m-%d|%r")
(display-time-mode 1)
#+END_SRC
** Kill Ring
#+BEGIN_SRC emacs-lisp
(setq kill-ring-max 1000)
#+END_SRC
** Subword
This makes ~forward-word~ and ~backward-word~ understand snake and camel case.
#+BEGIN_SRC emacs-lisp