emacs: Nyan cat mode!
This commit is contained in:
parent
dc0e8b9871
commit
a5f4b2f479
3 changed files with 16 additions and 3 deletions
|
@ -46,3 +46,5 @@
|
|||
;; Always highlight matching brackets
|
||||
(show-paren-mode 1)
|
||||
|
||||
;; Enable Nyan mode
|
||||
(nyan-mode 1)
|
||||
|
|
|
@ -99,6 +99,12 @@ comment as a filename."
|
|||
|
||||
(set-default-font "Source Code Pro 13")
|
||||
|
||||
;; Don't make the nyan cat too long ... I have other stuff in the mode
|
||||
;; bar as well!
|
||||
(set-variable 'nyan-bar-length 15)
|
||||
;; Not the real deal without this ...
|
||||
(set-variable 'nyan-wavy-trail t)
|
||||
|
||||
;; Hiding JOIN, QUIT, PART
|
||||
(setq erc-hide-list '("JOIN" "PART" "QUIT"))
|
||||
|
||||
|
|
|
@ -40,9 +40,6 @@
|
|||
|
||||
|
||||
(load "~/.emacs.d/init-functions.el")
|
||||
(load "~/.emacs.d/init-settings.el")
|
||||
(load "~/.emacs.d/init-modes.el")
|
||||
(load "~/.emacs.d/init-bindings.el")
|
||||
|
||||
(setq custom-file "~/.emacs.d/init-custom.el")
|
||||
(load custom-file)
|
||||
|
@ -51,6 +48,14 @@
|
|||
(custom-download-script "https://raw.github.com/dimitri/switch-window/master/switch-window.el"
|
||||
"switch-window.el")
|
||||
|
||||
;; NYAN CAT!
|
||||
(custom-clone-git "https://github.com/TeMPOraL/nyan-mode" "nyan-mode")
|
||||
(load "~/.emacs.d/nyan-mode/nyan-mode.el")
|
||||
|
||||
(load "~/.emacs.d/init-settings.el")
|
||||
(load "~/.emacs.d/init-modes.el")
|
||||
(load "~/.emacs.d/init-bindings.el")
|
||||
|
||||
;; IRC configuration (erc)
|
||||
;; Actual servers and such are loaded from irc.el
|
||||
(load "~/.emacs.d/irc")
|
||||
|
|
Loading…
Reference in a new issue