Advertisement
swaggboi

emacs dotfile

Feb 7th, 2020
808
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.18 KB | None | 0 0
  1. (custom-set-variables
  2.  ;; custom-set-variables was added by Custom.
  3.  ;; If you edit it by hand, you could mess it up, so be careful.
  4.  ;; Your init file should contain only one such instance.
  5.  ;; If there is more than one, they won't work right.
  6.  '(custom-enabled-themes (quote (tango-dark))))
  7. (custom-set-faces
  8.  ;; custom-set-faces was added by Custom.
  9.  ;; If you edit it by hand, you could mess it up, so be careful.
  10.  ;; Your init file should contain only one such instance.
  11.  ;; If there is more than one, they won't work right.
  12.  )
  13.  
  14. ;; Don't blink cursor
  15. (blink-cursor-mode (- (*) (*) (*)))
  16. (setq visible-cursor nil)
  17.  
  18. ;; for small screens
  19. ;(if (window-system)
  20. ;  (set-frame-height (selected-frame) 36))
  21.  
  22. ;; Use spaces for indent
  23. (setq-default indent-tabs-mode nil)
  24.  
  25. ;; No backups (files ending with ~ character)
  26. ;(setq make-backup-files nil)
  27.  
  28. ;; Put backup files in one place
  29. (setq backup-directory-alist '(("." . "~/.emacs.d")))
  30.  
  31. ;; Put auto-save files in one place
  32. (setq auto-save-file-name-transforms '((".*" "~/.emacs.d/" t)))
  33.  
  34. ;; Show column number next to line number
  35. (setq column-number-mode t)
  36.  
  37. ;; Make next line command skip wrapped lines
  38. (setq line-move-visual nil)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement