Advertisement
Guest User

Me .emacs file

a guest
Jun 13th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.09 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.  )
  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.  '(default ((t (:family "DejaVu Sans Mono" :foundry "unknown" :slant normal :weight normal :height 83 :width normal)))))
  13. ;;show the line numbers
  14. (global-linum-mode 1)
  15. ;;set tab width
  16. (setq-default tab-width 4)
  17.  
  18. (setq-default indent-tabs-mode t)
  19. (setq c-default-stile "stroustrup"
  20.       c-basic-offset 4)
  21.  
  22. ;;not sure
  23. (setq indent-line-function 'insert-tab)
  24.  
  25. ;;sets a keybind for a special character
  26. (global-set-key (kbd "<f9> a") "α")
  27. ;;disable backup
  28. (setq backup-inhibited t)
  29. ;;disable auto save
  30. (setq auto-save-default nil)
  31.  
  32. (setq x-select-enable-clipboard nil)
  33. (setq x-select-enable-primary nil)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement