Minor experimental startup optimizations
Definitely premature optimization.
This commit is contained in:
parent
84343f57aa
commit
3ea805cc94
2 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,10 @@
|
|||
;; clipboard
|
||||
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
|
||||
|
||||
;; fewer opts to process for systems that don't need them
|
||||
(unless IS-MAC (setq command-line-ns-option-alist nil))
|
||||
(unless IS-LINUX (setq command-line-x-option-alist nil))
|
||||
|
||||
;; stop copying each visual state move to the clipboard:
|
||||
;; https://bitbucket.org/lyro/evil/issue/336/osx-visual-state-copies-the-region-on
|
||||
;; grokked from: http://stackoverflow.com/questions/15873346/elisp-rename-macro
|
||||
|
|
|
@ -15,3 +15,6 @@
|
|||
(add-to-list 'default-frame-alist '(tool-bar-lines . 0))
|
||||
(add-to-list 'default-frame-alist '(menu-bar-lines . 0))
|
||||
(add-to-list 'default-frame-alist '(vertical-scroll-bars))
|
||||
|
||||
;; One less file to load at startup
|
||||
(setq site-run-file nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue