Skip to content

Instantly share code, notes, and snippets.

@dszoboszlay
Last active August 29, 2015 14:22
Show Gist options
  • Save dszoboszlay/93ca22f83bd5dc87be2f to your computer and use it in GitHub Desktop.
Save dszoboszlay/93ca22f83bd5dc87be2f to your computer and use it in GitHub Desktop.
(add-hook 'erlang-mode-hook 'font-lock-mode)
(setq require-final-newline t)
(column-number-mode 1)
(iswitchb-mode t)
(setq visible-bell t)
(global-set-key "\C-x\C-b" 'electric-buffer-list)
(show-paren-mode t)
(setq blink-matching-paren-distance nil)
(require 'package)
(package-initialize)
(add-to-list 'package-archives '("elpa" . "http://elpa.gnu.org/packages/"))
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(add-hook 'after-init-hook 'my-after-init-hook)
(defun my-after-init-hook () (require 'edts-start))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment