Created
February 22, 2015 14:10
-
-
Save brly/e2a08bcbeb4a1a480bf1 to your computer and use it in GitHub Desktop.
minimal emacs conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; backup off | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) | |
;; backspace (only remote from Windows - teraterm ) | |
(global-set-key "\C-h" 'delete-backward-char) | |
;; load path | |
(setq load-path (cons "~/.emacs.d/site-lisp" load-path)) | |
;; use white space | |
(setq-default indent-tabs-mode nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment