This file contains hidden or 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
(require 'gist) | |
(require 'tumblr) | |
(require 'http-post-simple) | |
(defun tumblr-gist-region (begin end &optional private) | |
"Post the current region as a new paste in a blog post" | |
(interactive "r\nP") | |
(gist-region begin end private 'tumblr-gist-callback)) | |
(defun tumblr-gist-callback (status) |
This file contains hidden or 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
(require 'gist) | |
(require 'tumblr) | |
(require 'http-post-simple) | |
(defun tumblr-gist-region (begin end &optional private) | |
"Post the current region as a new paste in a blog post" | |
(interactive "r\nP") | |
(gist-region begin end private 'tumblr-gist-callback)) | |
(defun tumblr-gist-callback (status) |
This file contains hidden or 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
(require 'color-theme) | |
(setq color-theme-is-global t) | |
(load "zenburn.el") | |
(setq color-theme-list | |
'(color-theme-calm-forest color-theme-zenburn color-theme-billw color-theme-calm-forest color-theme-goldenrod color-theme-dark-blue2 color-theme-robin-hood color-theme-gray30 color-theme-shaman color-theme-gnome2 color-theme-charcoal-black)) | |
(defun cycle-color-theme-list () | |
(setq color-theme-list (append (cdr color-theme-list) (list (car color-theme-list))))) |
NewerOlder