Advertisement
Guest User

spacemacs

a guest
May 18th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.93 KB | None | 0 0
  1. (defun dotspacemacs/user-config ()
  2.   "Configuration function for user code.
  3. This function is called at the very end of Spacemacs initialization after
  4. layers configuration.
  5. This is the place where most of your configurations should be done. Unless it is
  6. explicitly specified that a variable should be set before a package is loaded,
  7. you should place your code here."
  8.   ;; cosmetic stuff
  9.   (setq dotspacemacs-active-transparency 92)
  10.   (setq dotspacemacs-inactive-transparency 85)
  11.   (setq powerline-image-apple-rgb t)
  12.   (setq powerline-default-separator 'slant)
  13.   (setq initial-frame-alist '((top . 0) (left . 0) (width . 160) (height . 60)))
  14.   ;; key bindings
  15.   (setq mac-option-modifier 'none)
  16.   (setq mac-right-command-modifier 'meta)
  17.   (setq-default
  18.    evil-escape-key-sequence "jk"
  19.    evil-escape-unordered-key-sequence t)
  20.   ;; scroll speed improvement?
  21.   (setq jit-lock-defer-time 0)
  22.   (setq fast-but-imprecise-scrolling t)
  23.   )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement