Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (custom-set-variables
- ;; custom-set-variables was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- '(custom-enabled-themes (quote (tango-dark))))
- (custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- )
- ;; Don't blink cursor
- (blink-cursor-mode (- (*) (*) (*)))
- (setq visible-cursor nil)
- ;; Use spaces for indent
- (setq-default indent-tabs-mode nil)
- ;; Put backup files in one place
- (setq backup-directory-alist '(("." . "~/.emacs.d")))
- ;; Put auto-save files in one place
- (setq auto-save-file-name-transforms '((".*" "~/.emacs.d/" t)))
- ;; Show column number next to line number
- (setq column-number-mode t)
- ;; Make next line command skip wrapped lines
- (setq line-move-visual nil)
- ;; If running in a GUI...
- (if window-system
- (progn
- ;; Confirm before exit
- (setq confirm-kill-emacs 'yes-or-no-p)
- ;; For small screens (uncomment as needed)
- ; (set-frame-height (selected-frame) 36)
- ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement