Skip to content

Commit

Permalink
(WIP) Refactoring the Emacs configuration, rewriting from scratch for…
Browse files Browse the repository at this point in the history
… Emacs 24 (currently pretest-rc1), rather than a self-compiled, self-maintained Emacs with multiple patches.
  • Loading branch information
rkk committed Jun 2, 2012
1 parent 1605343 commit 548d54c
Show file tree
Hide file tree
Showing 4 changed files with 1,021 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Emacs/init.el
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,32 @@
;;
;; Master Emacs customization file
;;

;;
;; PATHS
;;
(add-to-list 'load-path "~/.emacs.d")
;(add-to-list 'load-path "~/.emacs.d/vendor")


;;
;; LIBRARIES
;;

;(load-library "~/.emacs.d/rkk-functions.el")
(load-library "rkk-functions.el")
;(load-library "~/.emacs.d/rkk-preferences.el")
(load-library "rkk-preferences.el")


;; ERC settings
(setq erc-hide-list '("JOIN" "PART" "QUIT"))


(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.
'(column-number-mode t)
'(custom-enabled-themes (quote (wombat))))
Loading

0 comments on commit 548d54c

Please sign in to comment.