Skip to content

Instantly share code, notes, and snippets.

@wavejumper
Last active August 29, 2015 14:06
Show Gist options
  • Save wavejumper/607f556001e5cf202cc2 to your computer and use it in GitHub Desktop.
Save wavejumper/607f556001e5cf202cc2 to your computer and use it in GitHub Desktop.
.emacs-live.el
(live-add-packs '(~/.live-packs/tom-pack))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(set-default-font "Inconsolata 14")
(add-hook 'after-init-hook 'color-theme-solarized-dark)
(add-hook 'prog-mode-hook #'diff-hl-mode)
(setq scroll-step 1)
(setq scroll-conservatively 10000)
(setq auto-window-vscroll nil)
(add-to-list 'load-path "~/.emacs.d/custom/emacs-powerline")
(require 'powerline)
(setq powerline-color1 "#073642")
(setq powerline-color2 "#002b36")
(set-face-attribute 'mode-line nil
:foreground "#fdf6e3"
:background "#2aa198"
:inverse-video nil
:box nil)
(set-face-attribute 'mode-line-inactive nil
:inverse-video nil
:box nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment