This file contains 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
;; hide pesky warnings (the lazy way of supressing the pop-up debugger on init ) | |
;; (setq warning-minimum-level :emergency) | |
;; the palette... | |
(deftheme wizard-flat "A flat, dark theme that plays nice with ample.") | |
(let ((wizard/green "#a9df90") |
This file contains 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
;; Prevent the cursor from blinking | |
(blink-cursor-mode 0) | |
;; Don't use messages that you don't read | |
(setq initial-scratch-message "") | |
(setq inhibit-startup-message t) | |
;; Don't let Emacs hurt your ears | |
(setq visible-bell t) | |
;; You need to set `inhibit-startup-echo-area-message' from the | |
;; customization interface: |
This file contains 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
;;; fizzbuzz.el --- FizzBuzz in Emacs Lisp | |
;;; | |
;;; Copyright 2012 Dimitri Fontaine | |
;; | |
;; This is using a simple trick: we build a list of entries then print them as-is, | |
;; so that we can manually add \n when necessary and append "fizz" and "buzz" on the | |
;; same line. | |
;; | |
;; This file has two implementations of fizzbuzz then a main routine (interactive) to | |
;; call to fill in a buffer. Try loading the file then M-x fizzbuzz. |