Skip to content

Instantly share code, notes, and snippets.

@S0und
Created August 22, 2013 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save S0und/6312819 to your computer and use it in GitHub Desktop.
Save S0und/6312819 to your computer and use it in GitHub Desktop.
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(org-hide-leading-stars t)
'(text-mode-hook (quote (text-mode-hook-identify)))
'(tool-bar-mode nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:family "Consolas" :foundry "outline" :slant normal :weight normal :height 143 :width normal)))))
;;(load-file "~/.emacs.d/el-monokai-theme/monokai-theme.el")
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-hober)))
;;(load-file "~/.emacs.d/color-theme-6.6.0/themes/color-theme-tangotango.el")
(color-theme-tangotango)
(setq org-log-done 'time)
(add-to-list 'load-path "~/.emacs.d/powerline")
(require 'powerline)
(powerline-default-theme)
(add-to-list 'load-path "~/.emacs.d/addons")
(require 'adaptive-wrap)
(setq inhibit-splash-screen t)
(make-variable-buffer-local 'erc-fill-column)
(add-hook 'window-configuration-change-hook
'(lambda ()
(save-excursion
(walk-windows
(lambda (w)
(let ((buffer (window-buffer w)))
(set-buffer buffer)
(when (eq major-mode 'erc-mode)
(setq erc-fill-column (- (window-width w) 2)))))))))
(add-to-list 'load-path "~/.emacs.d/org-8.0.7/lisp")
(add-to-list 'load-path "~/.emacs.d/org-8.0.7/contrib/lisp" t)
(add-to-list 'load-path "~/.emacs.d/evil") ; only without ELPA/el-get
(require 'evil)
(evil-mode 1)
(visual-line-mode t)
(adaptive-wrap-prefix-mode t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment