Guest User

Untitled

a guest
Jan 21st, 2018
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. (setq visible-bell t)
  2. (line-number-mode 1)
  3. (column-number-mode 1)
  4. (global-font-lock-mode t)
  5. (setq font-lock-maximum-size nil)
  6. (setq-default transient-mark-mode t)
  7. (menu-bar-mode -1)
  8. (setq backup-inhibited t)
  9. (setq auto-save-default nil)
  10. (setq inhibit-startup-message t)
  11. (load-library "paren")
  12. (show-paren-mode 1)
  13. (transient-mark-mode t)
  14. (setq make-backup-files nil
  15. backup-inhibited t)
  16. (fset 'yes-or-no-p 'y-or-n-p)
  17. (setq next-line-add-newlines nil)
  18. (display-time)
  19. (setq user-full-name "Frederic DELBOS - fred.delbos@gmail.com")
  20. (setq user-mail-address "fred.delbos@gmail.com")
  21. (global-set-key (read-kbd-macro "<f8>") 'delete-trailing-whitespace)
  22. (global-set-key (read-kbd-macro "<f9>") 'comment-region)
  23. (global-set-key (read-kbd-macro "<f10>") 'uncomment-region)
  24. (setq-default tab-width 4)
  25. (setq show-trailing-whitespace t)
Add Comment
Please, Sign In to add comment