Difference between revisions of "Emacs Prelude"

From WikEmacs
Jump to navigation Jump to search
(started Emacs Prelude page)
 
Line 22: Line 22:
 
= Helpful keybindings =
 
= Helpful keybindings =
  
; {{Keys|C-x C-c}}
+
; {{Keys|C-c f}}
: Quit Emacs.
+
: Find a recently accessed file.
  
; {{CommandKeys|C-x C-s|save-buffer}}
+
; {{Keys|C-c r}}
: Save buffer.
+
: Rename file and buffer.
  
 
<!------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------->
Line 32: Line 32:
 
<!-- Customization common to all platforms goes here -->
 
<!-- Customization common to all platforms goes here -->
  
== Customization 1 ==
+
You can tweak Prelude's config by adding '''.el''' files under the
<source lang="lisp">
+
'''personal''' directory.
(message "This stuff will go in your .emacs")
 
</source>
 
  
 +
== Change the default theme  ==
 +
 +
Emacs Prelude uses the Zenburn theme by default, but you can easily
 +
change this:
 +
 +
<syntaxhighlight lang="lisp">
 +
(load-theme 'solarized-dark t)
 +
</syntaxhighlight>
  
 
<!------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------->
Line 54: Line 60:
 
= [[Windows]] =
 
= [[Windows]] =
 
<!-- Customization/Notes specific to Windows goes here -->
 
<!-- Customization/Notes specific to Windows goes here -->
 
 
 
<!------------------------------------------------------------------------->
 
 
= [[Emacs-24]] =
 
<!-- Customization/Notes specific to Emacs-24 -->
 
<!-- Recent revision should come first. This way important information stays at top  -->
 
  
  

Revision as of 12:34, 30 March 2012

Emacs Prelude
Description Advanced Emacs config
Author name of author
Maintainer Bozhidar Batsov
Source https://github.com/bbatsov/emacs-prelude

Emacs Prelude has the goal to ease the initial Emacs setup process and to provide you with a much more powerful and productive experience than that you get out of the box. By using Emacs Prelude you're basically getting a "Get me out of the Prelude, I just want to use Emacs" card.

Emacs Prelude is compatible ONLY with GNU Emacs 24. While Emacs 24 is not yet officially released it's a rock solid piece of software more than suitable for everyday work. There is no good excuse not to use Emacs 24!

Basic setup

Assuming you're using an Unix-like OS (*BSD, GNU/Linux, OS X, Solaris, etc), you already have Emacs 24 installed, as well as git & curl you can skip the whole manual and just type in your favorite shell the following command:

curl -L https://github.com/bbatsov/emacs-prelude/raw/master/utils/installer.sh | sh

You can now power up your Emacs, sit back and enjoy Prelude.

Helpful keybindings

[C-c f]
Find a recently accessed file.
[C-c r]
Rename file and buffer.

Common Customization

You can tweak Prelude's config by adding .el files under the personal directory.

Change the default theme

Emacs Prelude uses the Zenburn theme by default, but you can easily change this:

(load-theme 'solarized-dark t)


GNU/Linux

OS X

Windows

Recommended Reading


Project Pages


Tutorial Pages