Last active
August 29, 2015 14:22
-
-
Save dszoboszlay/93ca22f83bd5dc87be2f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(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