Skip to content

Instantly share code, notes, and snippets.

@brly
Created February 22, 2015 14:10
Show Gist options
  • Save brly/e2a08bcbeb4a1a480bf1 to your computer and use it in GitHub Desktop.
Save brly/e2a08bcbeb4a1a480bf1 to your computer and use it in GitHub Desktop.
minimal emacs conf
;; 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