Ample theme in a terminal.
I'm in need of new themes, any suggestions?
Cosimo Galluzzi
Claire Keane

if i look back, i am lost
untitled
One Nice Bug Per Day
NASA
almost home

No title available
Doug Jones

izzy's playlists!

roma★
Cookie Run:Kingdom Official!

gracie abrams
No title available
🩵 avery cochrane 🩵
The Stonewall Inn
occasionally subtle
Today's Document
Monterey Bay Aquarium

tannertan36

seen from Singapore

seen from Slovakia

seen from Singapore

seen from Iraq

seen from Singapore

seen from United States
seen from United States

seen from Malaysia
seen from India
seen from Germany

seen from Belgium
seen from Türkiye
seen from United States
seen from France

seen from Finland

seen from Singapore
seen from Pakistan

seen from Russia

seen from Germany
seen from Netherlands
@emacsporn
Ample theme in a terminal.
I'm in need of new themes, any suggestions?
Newbie Problems Solved
A close friend of mine has been a vim, and Dr. Racket user for as long as I can remember, so it was simply shocking to me to receive an email saying, "Hey, so I'm going whole hog into Emacs." The shocking part wasn't that he said, "whole hog," but rather "Emacs." (He's a vegetarian)
Since then, an epic thread has formed in which he presents a problem and I reply with a few ways to fix it, or work arounds, or in the case of his problems with replace-string, elisp.
The interactive command replace-string is sort of funny to a newcomer. Most editors, when invoking the search and replace functionality operate on the entire file. replace-string, however, does not. It insists on going forward (or backwards with a prefix argument), but unless you explicitly go to the beginning of the buffer (and thereby losing your point position [yes, you are free to fix that by running this sequence: C-<spc> C-<spc> M-< M-x replace-string C-u C-<spc>]), you're out of luck if you want the common functionality. That is unless you know elisp. A simple function later got him exactly where he wanted to be, though I'm sure he'll change his mind after he uses the real replace-string for a while.
(defun replace-string-whole-buffer () "Whole buffer version of replace-string" (interactive) (save-excursion (beginning-of-buffer) (call-interactively 'replace-string)))
Install emacs color theme by buffer (or major-mode)
Have you ever wanted some of your emacs buffers to use a different color theme than the rest?, perhaps you want to set a color theme per major mode. Well, now that recent Emacs includes Face Remapping you can tell Emacs that a particular face should look different on a particular buffer, that is, the face becomes buffer-local.
Taking advantage of face-remapping, the color-theme-buffer-local project allows you to install a theme on per-buffer basis. Not only themes made for color-theme.el but also the all new emacs24 deftheme based ones.
color-theme-buffer-local is available for installation from Marmalade repo as two packages, one for color-theme based themes: M-x package-install color-theme-buffer-local and one for emacs24 themes: M-x package-install load-theme-buffer-local
For installing a color-theme.el theme say robin-hood on current buffer use:
(color-theme-buffer-local 'color-theme-robin-hood (current-buffer))
For installing emacs24 based theme, use:
(load-theme-buffer-local 'misterioso (current-buffer))
This way you can create a hook for your favorite major-mode and have it show using a color theme of your like:
(add-hook 'java-mode (lambda nil (color-theme-buffer-local 'color-theme-robin-hood (current-buffer))))
Back in March, Die EmacsWiki, Die dropped and flamewars ensued. But, the author of the post has followed through. Only time will tell whether or not we have a dead EmacsWiki or not...
The creator of Ruby on emacs.
emacs goodie: auto-wrap a comment block
I always forget this emacs trick: M-q auto-wraps the current text block to the fill column (default is usually column 70). This is wondrous for long comments:
””“Sometimes I like to write a nice long block of text explaining what a function does. You can wrap it manually, but then it gets all screwy when you need to add something to the middle!”“”
M-x set-fill-column 20 M-q
””“Sometimes I like to write a nice long block of text explaining what a function does. You can wrap it manually, but then it gets all screwy when you need to add something to the middle!”“”
My new Screen setup. emacs23 on the left, mutt and finch on the right (top and bottom respectively.) <3
Thanks to Matt Ball, for incepting the idea into my head.
Dieting? There's an org-mode extension for that.
A couple of days ago there was a thread on the org-mode list about dieting. The conclusion, checkout org-diet.
Textmate sucks: Sooner or later, you have to face facts. Man up and learn Emacs.
Ted Dziuba, MacOS X is an unsuitable platform for web development
(via technotalk)
Experimenting with Swank JavaScript REPL environment on Emacs while working on Midgard Create.
Write JS commands in Emacs REPL, get them executed on browser and get results back to Emacs!
GNU Emacs 24, which is the current in development branch, is including a package that is similar in spirit to color-theme.el, but not quite. As a result, they're looking for themes to include by default and have a web app which can be used to make your own.
from left to right top down: awesomewm, conkeror (fantastic FF backed, emacs-like browser), emacs 24 (from trunk) [new jquery plugin I'm writing], emms, eshell (is awesome), and irc. (via justinlilly)
I don't use org-mode enough.
[OmniFocus] was made by people who use something called Emacs, which we originally learned about from the Rosseta stone. Nobody has really ever learned what it’s for, except that it might be for everything.
Merlin Mann (via ted-is-a-nerd)
Emacs 23 running on Debian Lenny with the Xmonad windows manager (by Kelsin5)