What's in your .emacs? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T10:49:41Zhttp://stackoverflow.com/feeds/question/154097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154097/whats-in-your-emacs20What's in your .emacs?A. Rex2008-09-30T17:27:08Z2009-08-06T01:58:46Z
<p>I've switched computers a few times recently, and somewhere along the way I lost my .emacs. I'm trying to build it up again, but while I'm at it, I thought I'd pick up other good configurations that other people use.</p>
<p>So, if you use Emacs, what's in <i>your</i> .emacs?</p>
<p>Mine is pretty barren right now, containing only:</p>
<ol>
<li>Global font-lock-mode! <code>(global-font-lock-mode 1)</code></li>
<li>My personal preferences with respect to indentation, tabs, and spaces.</li>
<li>Use cperl-mode instead of perl-mode.</li>
<li>A shortcut for compilation.</li>
</ol>
<p>What do you think is useful?</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/154105#1541051Answer by David Nehme for What's in your .emacs?David Nehme2008-09-30T17:29:33Z2008-09-30T17:29:33Z<pre><code>(put 'erase-buffer 'disabled nil)
(put 'downcase-region 'disabled nil)
(set-variable 'visible-bell t)
(set-variable 'tool-bar-mode nil)
(set-variable 'menu-bar-mode nil)
(setq load-path (cons (expand-file-name "/usr/share/doc/git-core/contrib/emacs") load-path))
(require 'vc-git)
(when (featurep 'vc-git) (add-to-list 'vc-handled-backends 'git))
(require 'git)
(autoload 'git-blame-mode "git-blame"
"Minor mode for incremental blame for Git." t)
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/154110#1541104Answer by avp for What's in your .emacs?avp2008-09-30T17:31:15Z2008-09-30T17:31:15Z<p>You can look here: <a href="http://www.dotemacs.de/" rel="nofollow">http://www.dotemacs.de/</a></p>
<p>And my .emacs is pretty long to put it here as well, so it will make the answer not too readable. Anyway, if you wish I can sent it to you.</p>
<p>Also I would recomend you to read this: <a href="http://steve.yegge.googlepages.com/my-dot-emacs-file" rel="nofollow">http://steve.yegge.googlepages.com/my-dot-emacs-file</a></p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/154146#1541463Answer by Kristopher Johnson for What's in your .emacs?Kristopher Johnson2008-09-30T17:37:39Z2008-09-30T17:43:15Z<p>Here are some key mappings that I've become dependent upon:</p>
<pre><code>(global-set-key [(control \,)] 'goto-line)
(global-set-key [(control \.)] 'call-last-kbd-macro)
(global-set-key [(control tab)] 'indent-region)
(global-set-key [(control j)] 'join-line)
(global-set-key [f1] 'man)
(global-set-key [f2] 'igrep-find)
(global-set-key [f3] 'isearch-forward)
(global-set-key [f4] 'next-error)
(global-set-key [f5] 'gdb)
(global-set-key [f6] 'compile)
(global-set-key [f7] 'recompile)
(global-set-key [f8] 'shell)
(global-set-key [f9] 'find-next-matching-tag)
(global-set-key [f11] 'list-buffers)
(global-set-key [f12] 'shell)
</code></pre>
<p>Some other miscellaneous stuff, mostly for C++ development:</p>
<pre><code>;; Use C++ mode for .h files (instead of plain-old C mode)
(setq auto-mode-alist (cons '("\\.h$" . c++-mode) auto-mode-alist))
;; Use python-mode for SCons files
(setq auto-mode-alist (cons '("SConstruct" . python-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("SConscript" . python-mode) auto-mode-alist))
;; Parse CppUnit failure reports in compilation-mode
(require 'compile)
(setq compilation-error-regexp-alist
(cons '("\\(!!!FAILURES!!!\nTest Results:\nRun:[^\n]*\n\n\n\\)?\\([0-9]+\\)) test: \\([^(]+\\)(F) line: \\([0-9]+\\) \\([^ \n]+\\)" 5 4)
compilation-error-regexp-alist))
;; Enable cmake-mode from http://www.cmake.org/Wiki/CMake_Emacs_mode_patch_for_comment_formatting
(require 'cmake-mode)
(setq auto-mode-alist
(append '(("CMakeLists\\.txt\\'" . cmake-mode)
("\\.cmake\\'" . cmake-mode))
auto-mode-alist))
;; "M-x reload-buffer" will revert-buffer without requiring confirmation
(defun reload-buffer ()
"revert-buffer without confirmation"
(interactive)
(revert-buffer t t))
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/154980#1549804Answer by Jonathan Arkell for What's in your .emacs?Jonathan Arkell2008-09-30T20:38:55Z2008-09-30T20:38:55Z<p>This is not the whole kit and kaboodle, but it is some of the more useful snippets I've gathered:</p>
<pre><code>(defadvice show-paren-function (after show-matching-paren-offscreen
activate)
"If the matching paren is offscreen, show the matching line in the
echo area. Has no effect if the character before point is not of
the syntax class ')'."
(interactive)
(let ((matching-text nil))
;; Only call `blink-matching-open' if the character before point
;; is a close parentheses type character. Otherwise, there's not
;; really any point, and `blink-matching-open' would just echo
;; "Mismatched parentheses", which gets really annoying.
(if (char-equal (char-syntax (char-before (point))) ?\))
(setq matching-text (blink-matching-open)))
(if (not (null matching-text))
(message matching-text))))
;;;;;;;;;;;;;;;
;; UTF-8
;;;;;;;;;;;;;;;;;;;;
;; set up unicode
(prefer-coding-system 'utf-8)
(set-default-coding-systems 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
;; This from a japanese individual. I hope it works.
(setq default-buffer-file-coding-system 'utf-8)
;; From Emacs wiki
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
;; Wwindows clipboard is UTF-16LE
(set-clipboard-coding-system 'utf-16le-dos)
(defun jonnay-timestamp ()
"Spit out the current time"
(interactive)
(insert (format-time-string "%Y-%m-%d")))
(defun jonnay-sign ()
"spit out my name, email and the current time"
(interactive)
(insert "-- Jonathan Arkell (jonathana@criticalmass.com)")
(jonnay-timestamp))
;; Cygwin requires some seriosu setting up to work the way i likes it
(message "Setting up Cygwin...")
(let* ((cygwin-root "c:")
(cygwin-bin (concat cygwin-root "/bin"))
(gambit-bin "/usr/local/Gambit-C/4.0b22/bin/")
(snow-bin "/usr/local/snow/current/bin")
(mysql-bin "/wamp/bin/mysql/mysql5.0.51a/bin/"))
(setenv "PATH" (concat cygwin-bin ";" ;
snow-bin ";"
gambit-bin ";"
mysql-bin ";"
".;")
(getenv "PATH"))
(setq exec-path (cons cygwin-bin exec-path)))
(setq shell-file-name "bash")
(setq explicit-shell-file-name "bash")
(require 'cygwin-mount)
(cygwin-mount-activate)
(message "Setting up Cygwin...Done")
; Completion isn't perfect, but close
(defun my-shell-setup ()
"For Cygwin bash under Emacs 20+"
(setq comint-scroll-show-maximum-output 'this)
(setq comint-completion-addsuffix t)
(setq comint-eol-on-send t)
(setq w32-quote-process-args ?\")
(make-variable-buffer-local 'comint-completion-addsuffix))
(setq shell-mode-hook 'my-shell-setup)
(add-hook 'emacs-startup-hook 'cygwin-shell)
; Change how home key works
(global-set-key [home] 'beginning-or-indentation)
(substitute-key-definition 'beginning-of-line 'beginning-or-indentation global-map)
(defun yank-and-down ()
"Yank the text and go down a line."
(interactive)
(yank)
(exchange-point-and-mark)
(next-line))
(defun kill-syntax (&optional arg)
"Kill ARG sets of syntax characters after point."
(interactive "p")
(let ((arg (or arg 1))
(inc (if (and arg (< arg 0)) 1 -1))
(opoint (point)))
(while (not (= arg 0))
(if (> arg 0)
(skip-syntax-forward (string (char-syntax (char-after))))
(skip-syntax-backward (string (char-syntax (char-before)))))
(setq arg (+ arg inc)))
(kill-region opoint (point))))
(defun kill-syntax-backward (&optional arg)
"Kill ARG sets of syntax characters preceding point."
(interactive "p")
(kill-syntax (- 0 (or arg 1))))
(global-set-key [(control shift y)] 'yank-and-down)
(global-set-key [(shift backspace)] 'kill-syntax-backward)
(global-set-key [(shift delete)] 'kill-syntax)
(defun insert-file-name (arg filename)
"Insert name of file FILENAME into buffer after point.
Set mark after the inserted text.
Prefixed with \\[universal-argument], expand the file name to
its fully canocalized path.
See `expand-file-name'."
;; Based on insert-file in Emacs -- ashawley 2008-09-26
(interactive "*P\nfInsert file name: ")
(if arg
(insert (expand-file-name filename))
(insert filename)))
(defun kill-ring-save-filename ()
"Copy the current filename to the kill ring"
(interactive)
(kill-new (buffer-file-name)))
(defun insert-file-name ()
"Insert the name of the current file."
(interactive)
(insert (buffer-file-name)))
(defun insert-directory-name ()
"Insert the name of the current directory"
(interactive)
(insert (file-name-directory (buffer-file-name))))
(defun jonnay-toggle-debug ()
"Toggle debugging by toggling icicles, and debug on error"
(interactive)
(toggle-debug-on-error)
(icicle-mode))
(defvar programming-modes
'(emacs-lisp-mode scheme-mode lisp-mode c-mode c++-mode
objc-mode latex-mode plain-tex-mode java-mode
php-mode css-mode js2-mode nxml-mode nxhtml-mode)
"List of modes related to programming")
; Text-mate style indenting
(defadvice yank (after indent-region activate)
(if (member major-mode programming-modes)
(indent-region (region-beginning) (region-end) nil)))
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/155030#1550302Answer by kij for What's in your .emacs?kij2008-09-30T20:48:07Z2008-09-30T20:48:07Z<p>i use paredit for easy (e)lisp handling and ido-mode minibuffer completions. </p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/156998#15699813Answer by Dave Webb for What's in your .emacs?Dave Webb2008-10-01T10:23:22Z2009-05-10T13:04:59Z<p>I have this to change <code>yes</code> or <code>no</code> prompt to <code>y</code> or <code>n</code> prompts:</p>
<pre><code>(fset 'yes-or-no-p 'y-or-n-p)
</code></pre>
<p>I have these to start Emacs without so much "fanfare" which I got from <a href="http://stackoverflow.com/questions/144983/how-do-i-make-emacs-start-without-so-much-fanfare">this question</a>.</p>
<pre><code>(setq inhibit-startup-echo-area-message t)
(setq inhibit-startup-message t)
</code></pre>
<p>And <a href="http://steve.yegge.googlepages.com/my-dot-emacs-file" rel="nofollow">Steve Yegge's</a> function to rename a file that you're editing along with its corresponding buffer:</p>
<pre><code>(defun rename-file-and-buffer (new-name)
"Renames both current buffer and file it's visiting to NEW-NAME."
(interactive "sNew name: ")
(let ((name (buffer-name))
(filename (buffer-file-name)))
(if (not filename)
(message "Buffer '%s' is not visiting a file!" name)
(if (get-buffer new-name)
(message "A buffer named '%s' already exists!" new-name)
(progn
(rename-file name new-name 1)
(rename-buffer new-name)
(set-visited-file-name new-name)
(set-buffer-modified-p nil))))))
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/158057#15805714Answer by Jason Dufair for What's in your .emacs?Jason Dufair2008-10-01T14:58:29Z2008-10-01T14:58:29Z<p>My favorite snippet. The ultimate in Emacs eye candy:</p>
<pre><code>;; real lisp hackers use the lambda character
;; courtesy of stefan monnier on c.l.l
(defun sm-lambda-mode-hook ()
(font-lock-add-keywords
nil `(("\\<lambda\\>"
(0 (progn (compose-region (match-beginning 0) (match-end 0)
,(make-char 'greek-iso8859-7 107))
nil))))))
(add-hook 'emacs-lisp-mode-hook 'sm-lambda-mode-hook)
(add-hook 'lisp-interactive-mode-hook 'sm-lamba-mode-hook)
(add-hook 'scheme-mode-hook 'sm-lambda-mode-hook)
</code></pre>
<p>So you see i.e. the following when editing lisp/scheme:</p>
<pre><code>(global-set-key "^Cr" '(λ () (interactive) (revert-buffer t t nil)))
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/158641#1586412Answer by Sard for What's in your .emacs?Sard2008-10-01T17:00:08Z2008-10-01T17:00:08Z<p>To refresh the webpage you're editing from within Emacs</p>
<pre><code>(defun moz-connect()
(interactive)
(make-comint "moz-buffer" (cons "127.0.0.1" "4242"))
(global-set-key "\C-x\C-g" '(lambda ()
(interactive)
(save-buffer)
(comint-send-string "*moz-buffer*" "this.BrowserReload()\n"))))
</code></pre>
<p>Used in combination with <a href="http://hyperstruct.net/projects/mozlab" rel="nofollow">http://hyperstruct.net/projects/mozlab</a></p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/172736#1727366Answer by jamesnvc for What's in your .emacs?jamesnvc2008-10-05T22:01:33Z2008-10-05T22:01:33Z<p>One thing that can prove very useful: Before it gets too big, try to split it into multiple files for various tasks: My .emacs just sets my load-path and the loads a bunch of files - I've got all my mode-specific settings in <code>mode-configs.el</code>, keybindings in <code>keys.el</code>, et cetera</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/214586#2145864Answer by Adam Crume for What's in your .emacs?Adam Crume2008-10-18T04:44:18Z2008-10-18T04:44:18Z<p>I have a lot of others that have already been mentioned, but these are absolutely necessary in my opinion:</p>
<pre><code>(transient-mark-mode 1) ; makes the region visible
(line-number-mode 1) ; makes the line number show up
(column-number-mode 1) ; makes the column number show up
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/214592#2145921Answer by Chris Dolan for What's in your .emacs?Chris Dolan2008-10-18T04:50:56Z2008-10-18T04:50:56Z<p>This block is the most important for me:</p>
<pre><code>(setq locale-coding-system 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-selection-coding-system 'utf-8)
(prefer-coding-system 'utf-8)
</code></pre>
<p>I've never been clear on the difference between those, though. Cargo cult, I guess...</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/215041#21504115Answer by bortzmeyer for What's in your .emacs?bortzmeyer2008-10-18T13:26:25Z2008-10-18T13:26:25Z<p>Use the <a href="http://dotfiles.org/.emacs" rel="nofollow">ultimate dotfiles site</a>. Add your '.emacs' here. Read the '.emacs' of others.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/261274#2612742Answer by Alex Ott for What's in your .emacs?Alex Ott2008-11-04T08:47:14Z2008-11-04T08:47:14Z<p>You can find my configuration (both in html & in tar'ed archive) on <a href="http://xtalk.msk.su/~ott/en/emacs/" rel="nofollow">my site</a>. It contains lot of settings for different modes</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/549856#5498561Answer by justinhj for What's in your .emacs?justinhj2009-02-14T21:41:54Z2009-02-14T21:41:54Z<p>I set up some handy shortcuts to web pages and searches using webjump</p>
<pre><code>(require 'webjump)
(global-set-key [f2] 'webjump)
(setq webjump-sites
(append '(
("Reddit Search" .
[simple-query "www.reddit.com" "http://www.reddit.com/search?q=" ""])
("Google Image Search" .
[simple-query "images.google.com" "images.google.com/images?hl=en&q=" ""])
("Flickr Search" .
[simple-query "www.flickr.com" "flickr.com/search/?q=" ""])
("Astar algorithm" .
"http://www.heyes-jones.com/astar")
)
webjump-sample-sites))
</code></pre>
<p>Blog post about how this works here</p>
<p><a href="http://justinsboringpage.blogspot.com/2009/02/search-reddit-flickr-and-google-from.html" rel="nofollow">http://justinsboringpage.blogspot.com/2009/02/search-reddit-flickr-and-google-from.html</a></p>
<p>Also I recommend these:</p>
<pre><code>(setq visible-bell t) ; no beeping
(setq transient-mark-mode t) ; visually show region
(setq line-number-mode t) ; show line numbers
(setq global-font-lock-mode 1) ; everything should use fonts
(setq font-lock-maximum-decoration t)
</code></pre>
<p>Also I get rid of some of the superfluous gui stuff</p>
<pre><code> (if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1)))
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/589981#5899810Answer by Cheeso for What's in your .emacs?Cheeso2009-02-26T10:32:49Z2009-02-26T10:32:49Z<p>Anyone with a 4-line .emacs file is suspicious.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/590025#5900250Answer by vatine for What's in your .emacs?vatine2009-02-26T10:47:36Z2009-02-26T10:47:36Z<p>One line to amend the load path
One line to load my init library
One line to load my emacs init files</p>
<p>Of course, the "emacs init files" are quite numerous, one per specific thing, loaded in a deterministic order.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/750502#7505022Answer by Török Gábor for What's in your .emacs?Török Gábor2009-04-15T06:15:55Z2009-04-15T06:21:28Z<p>It's hard to answer this question, because everyone uses Emacs for very different purposes.</p>
<p>Further more, a better practice may be to KISS your dotemacs. Since the <a href="http://www.gnu.org/software/emacs/manual/html%5Fmono/emacs.html#Easy-Customization" rel="nofollow">Easy Customization Interface</a> is widely supported amongst Emacs' modes, you should store all your customization in your <code>custom-file</code> (which may be a separate place in your dotemacs), and for the <a href="http://github.com/nyuhuhuu/home/blob/68cad23038183405ba02d25af5c72adc86dbc70a/.emacs" rel="nofollow">dotemacs</a>, put in it only load path settings, package requires, hooks, and key bindings. Once you start using <a href="http://www.emacsblog.org/2008/12/05/emacs-starter-kit/" rel="nofollow">Emacs Starter Kit</a>, a whole useful bunch of settings may removed from your dotemacs, too.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/845311#8453111Answer by Borbus for What's in your .emacs?Borbus2009-05-10T13:13:44Z2009-05-10T13:13:44Z<p>My .emacs is only 127 lines, here are the most useful little snippets:</p>
<pre><code>;; keep backup files neatly out of the way in .~/
(setq backup-directory-alist '(("." . ".~")))
</code></pre>
<p>This makes the *~ files which I find clutter up the directory go into a special directory, in this case .~</p>
<pre><code>;; uniquify changes conflicting buffer names from file<2> etc
(require 'uniquify)
(setq uniquify-buffer-name-style 'reverse)
(setq uniquify-separator "/")
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
(setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
</code></pre>
<p>This sets up uniquify which changes those ugly file<2> etc. buffer names you get when multiple files have the same name into a much neater unambiguous name using as much of the whole path of the file as it has to.</p>
<p>That's about it... the rest is pretty standard stuff that I'm sure everyone knows about.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/845381#8453810Answer by dbr for What's in your .emacs?dbr2009-05-10T14:00:34Z2009-05-10T14:00:34Z<p><a href="http://github.com/technomancy/emacs-starter-kit/tree/master" rel="nofollow">emacs-starter-kit</a> as a base, then I've added.. <code>vimpulse.el</code>, <code>whitespace.el</code>, <code>yasnippet</code>, <code>textmate.el</code> and <code>newsticker.el</code>. </p>
<p>In my ~/.emacs.d/$USERNAME.el (dbr.el) file:</p>
<pre><code>(add-to-list 'load-path (concat dotfiles-dir "/vendor/"))
;; Snippets
(add-to-list 'load-path "~/.emacs.d/vendor/yasnippet/")
(require 'yasnippet)
(yas/initialize)
(yas/load-directory "~/.emacs.d/vendor/yasnippet/snippets")
;; TextMate module
(require 'textmate)
(textmate-mode 'on)
;; Whitespace module
(require 'whitespace)
(add-hook 'ruby-mode-hook 'whitespace-mode)
(add-hook 'python-mode-hook 'whitespace-mode)
;; Misc
(flyspell-mode 'on)
(setq viper-mode t)
(require 'viper)
(require 'vimpulse)
;; IM
(eval-after-load 'rcirc '(require 'rcirc-color))
(setq rcirc-default-nick "_dbr")
(setq rcirc-default-user-name "_dbr")
(setq rcirc-default-user-full-name "_dbr")
(require 'jabber)
;;; Google Talk account
(custom-set-variables
'(jabber-connection-type (quote ssl))
'(jabber-network-server "talk.google.com")
'(jabber-port 5223)
'(jabber-server "mysite.tld")
'(jabber-username "myusername"))
;; Theme
(color-theme-zenburn)
;; Key bindings
(global-set-key (kbd "M-z") 'undo)
(global-set-key (kbd "M-s") 'save-buffer)
(global-set-key (kbd "M-S-z") 'redo)
</code></pre>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/845410#8454100Answer by ezotrank for What's in your .emacs?ezotrank2009-05-10T14:11:50Z2009-05-10T14:11:50Z<p>Always save my config in svn <a href="http://my-trac.assembla.com/ez-conf/browser/emacs.d" rel="nofollow">http://my-trac.assembla.com/ez-conf/browser/emacs.d</a></p>