|
|
``` _____ ____ _ _| ____|_ __ ___ __ _ ___ ___ | _ \ _ __ ___| |_ _ __| | ___| _| | '_ ` _ \ / _` |/ __/ __| | |_) | '__/ _ \ | | | |/ _` |/ _ \| |___| | | | | | (_| | (__\__ \ | __/| | | __/ | |_| | (_| | __/|_____|_| |_| |_|\__,_|\___|___/ |_| |_| \___|_|\__,_|\__,_|\___|```
## Prelude
Emacs is probably the best text editor in the world. However, theprocess of coming up with a useful Emacs configuration is long anddifficult. It's this process that separates you from truly takingadvantage of Emacs's power. I like to refer to this process as the**Prelude**. The **Emacs Prelude** has the goal to ease the initialEmacs setup process and to provide you with a much more powerful andproductive experience than that you get out of the box. By using **EmacsPrelude** you're basically getting a "Get me out of the Prelude, Ijust want to use Emacs" card.
Emacs Prelude is compatible **ONLY with GNU Emacs 24**. While Emacs 24is not yet officially released it's a rock solid piece of softwaremore than suitable for everyday work. There is no good excuse not touse Emacs 24!
## Fast Forward
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` youcan skip the whole manual and just type in your favorite shell thefollowing command:
`curl -Lhttps://github.com/bbatsov/emacs-prelude/raw/master/utils/installer.sh| sh`
You can now power up your Emacs, sit back and enjoy Prelude,forgetting about the rest of this manual.
## Getting Emacs 24
Obviously to use the Emacs Prelude you have to install Emacs 24first. Here's a few tips on doing so:
### OS X
Obtaining Emacs 24 on OS X is really simple. There are two popularways to do it. The first is to simply download a pretest (or a nightlybuild) from [Emacs for OSX](http://emacsformacosx.com). My personalrecommendation would be to get the latest pretest from[here](http://emacsformacosx.com/builds).
That was really easy, right?
The second easy way to obtain Emacs 24 is via[homebrew](http://mxcl.github.com/homebrew/). Just type the followingincantation in your shell and you're done:
```bash$ brew install emacs --cocoa --use-git-head --HEAD$ cp -r /usr/local/Cellar/emacs/HEAD/Emacs.app /Applications/```
The second step is optional, but it's recommended if you like to startEmacs from the launchpad or from Spotlight. Personally I prefer tostart Emacs in daemon mode (`emacs --daemon`), so that I could share asingle Emacs instance between several Emacs clients (`emacsclient-c/t`).
Chances are good you have an older version of Emacs installed bydefault with OS X. I suggest you to remove that older Emacs version toavoid conflicts with the new one. Do this:
```bash$ sudo rm /usr/bin/emacs$ sudo rm -rf /usr/share/emacs```
That's all folk! You may now proceed to the configuration section.
### Linux
Given that Linux is more or less the home os of Emacs it presents uswith the most installation options. Of course, we can build Emacs from[source](https://github.com/emacsmirror/emacs) on every distributionout there, but I rarely bother to do so. Using the distribution'spackage manager is a better idea for many reasons - you don't need toinstall a build chain and lots of dev libraries, you get updatedversions when they are released and you get automated dependencymanager, just to name a few.
That said, few distributions include in their primary repositoriesbuilds of Emacs 24. Luckily there are some unofficial repos that cometo the rescue.
Debian users should look no further than the amazing[emacs-snapshot APT repo](http://emacs.naquadah.org/). You'll findinstallation instructions there for all the relevant Debianversions out there. High quality, highly recommended builds! Afteryou've added the repo you can install Emacs 24 with the followingcommand:
```bash$ sudo apt-get install emacs-snapshot```
Ubuntu users have easy access to Emacs 24 as well:
```bash$ sudo apt-add-repository ppa:cassou/emacs$ sudo apt-get install emacs-snapshot```
Gentoo users have even less to do, since Emacs 24 can be obtained viathe emacs-vcs package in portage, as noted in the official[Emacs on Gentoo page](http://www.gentoo.org/proj/en/lisp/emacs/emacs.xml).
Unfortunately I wasn't able to find prebuilt Emacs 24 packages for anyof the RPM distros (Fedora, SUSE, Mandriva, etc). Since, I'm Debianuser I have to admit that I didn't look that far, but the sourceinstallation is not particularly hard and is always an option.
### Windows
There are several ways to obtain precompiled Emacs 24 binaries ifyou're a Windows users. The most popular are[EmacsW32](http://ourcomments.org/cgi-bin/emacsw32-dl-latest.pl),[Emacs for Windows](http://code.google.com/p/emacs-for-windows/) andof course the official[Emacs Windows builds](http://alpha.gnu.org/gnu/emacs/windows/). I've,personally, never used any builds other than the official ones. Theunofficial builds usually include installers and various patches thatmight be of use to some users.
Since I rarely use Windows I cannot give you any more advice on thechoice of a binary vendor.
## Enhanced programming experience
The following list will be expanded greatly in the future.
### Additional programming languages support
* [Clojure](https://github.com/technomancy/clojure-mode)* [CoffeeScript](https://github.com/defunkt/coffee-mode)* [Erlang](http://www.erlang.org/doc/apps/tools/erlang_mode_chapter.html)* [Groovy](http://groovy.codehaus.org/Emacs+Groovy+Mode)* [Haskell](http://www.haskell.org/haskellwiki/Haskell_mode_for_Emacs)
### Additional markup languages support
* Markdown* Sass* Haml* Yaml* LaTeX
### Enhanced configuration
* C* Clojure* CoffeeScript* Common Lisp* ERC* JavaScript* Python* Ruby* Scheme* XML
## Enhanced productivity
* [Projectile](https://github.com/bbatsov/projectile)* yasnippet
## Bundled packages
* auctex (LaTeX editing)* clojure-mode* coffee-mode* deft (note taking)* gist (snippet sharing on github.com)* groovy-mode* expand-region* haml-mode* haskell-mode* magit (enhanced git integration)* markdown-mode* paredit* projectile (project management mode)* python.el (improved Python mode)* sass-mode* scss-mode* yaml-mode* yari (ri frontend)* yasnippet
## Installation
### Automated
You can install Emacs via the command line with either `curl` or`wget`. Naturally `git` is also required.
#### Via Curl
If you're using `curl` type the following command:
`curl -L https://github.com/bbatsov/emacs-prelude/raw/master/utils/installer.sh | sh`
#### Via Wget
If you're using `wget` type:
`wget --no-check-certificate https://github.com/bbatsov/emacs-prelude/raw/master/utils/installer.sh -O - | sh`
### Manual
```bash$ git clone git://github.com/bbatsov/emacs-prelude.git path/to/local/repo$ ln -s path/to/local/repo ~/.emacs.d```
You'd do well to replace `~/.emacs.d` with the value of`user-emacs-directory` for your OS. You can check the value by doing`C-h v user-emacs-directory` inside Emacs.
You might have to install the `make` and `makeinfo` packages if youdon't have them already, since the build of some packages obtained via`el-get` might require them.
## Running
Nothing fancy here. Just start Emacs as usual. Personally I run Emacsin daemon mode:
`$ emacs --daemon`
Afterwards I connect to the server with either a terminal or a GUIclient like this:
```bash$ emacsclient -t$ emacsclient -c```
You'd probably do well to put a few aliases in your `.zshrc` (or`.bashrc`):
```bashalias e=emacsclient -talias ec=emacsclient -calias vim=emacsclient -talias vi=emacsclient -t```
The last two aliases are helpful if you're used to editing files fromthe command line using `vi(m)`.
## Getting to know Prelude
Certainly the best way to understand how Prelude enhances the defaultEmacs experience is to peruse Prelude's source code (which isobviously written in Emacs Lisp). If you're intimidated by the source- do not despair. Prelude includes a `prelude-mode` minor Emacs mode which collects some of the additional functionality added by Prelude. It also adds an additional keymap that binds many of those extensions to keybindings.
## Color Themes
Emacs 24 ships with a new theming facility that effectively rendersthe old color-theme package obsolete. Emacs 24 provides a dozen ofbuilt-in themes you can use out-of-the-box by invoking the `M-xload-theme` command. Emacs Prelude adds two more popular themes to themix - [Zenburn](https://github.com/bbatsov/zenburn-emacs) and[Solarized](https://github.com/bbatsov/solarized-emacs) (I'm themaintainer of the Emacs ports included).
Zenburn is the default color theme in Prelude, but you can change itat your discretion. Why Zenburn? I (and lots of hackers around theworld) find it pretty neat for some reason. Personally I find thedefault theme pretty tiresome for the eyes, that's why I took that"controversial" decision to replace it. You can, of course, easily goback to the default (or select another theme entirely).
To disable Zenburn just put in your personal config the followingline:
```elisp(disable-theme 'zenburn)```
Or you can use another theme altogether by adding something like:
```elisp(load-theme 'solarized-dark t)```
## Personalizing
If you'd like to change some of the setting in Prelude (or simply addmore) the proper way to do so would be to create Emacs Lisp filesunder the **personal** directory in `prelude-dir`. They will be loadedautomatically be Prelude on startup.
Avoid modifying the Prelude config itself (unless you're notintimidated to maintain a personal fork on GitHub) - this will make ithard for you to receive automatic updates in the future.
## Caveats & Pitfalls
### Ugly colors in the terminal Emacs version
If your Emacs looks considerably uglier in a terminal (compared to theGUI version) try adding this to your `.bashrc` or `.zshrc`:
```bashexport TERM=xterm-256color```
Source the `.bashrc` file and start Emacs again.
### Marmalade error on initial startup
If you get some http connection error related to the Marmalade repojust do a manual `M-x package-refresh-contents` and restart Emacsafterwards.
### No arrow navigation in editor buffers
This is not a bug - it's a feature! I firmly believe that the one trueway to use Emacs is by using it the way it was intended to be used (asfar as navigation is concerned at least). That's why I've disabled allmovement commands with arrows - to prevent you from being tempted touse them.
If you'd still like to use the arrow keys just invoke `M-xprelude-restore-arrow-keys` to enable them for the duration of yourcurrent Emacs session or add `(prelude-restore-arrow-keys)` to yourpersonal Emacs customization to enable them permanently.
### Windows compatibility
While everything in Prelude should work fine in Windows, I test it onlywith Linux & OSX, so there are Windows related problems from time totime. This situation will probably improve over time.
## Known issues
Check out the project's[issue list](https://github.com/bbatsov/emacs-prelude/issues?sort=created&direction=desc&state=open)a list of unresolved issues. By the way - feel free to fix any of themand sent me a pull request. :-)
## Contributors
Here's a [list](https://github.com/bbatsov/emacs-prelude/contributors) of all the people who have contributed to thedevelopment of Emacs Prelude.
## Bugs & Improvements
Bug reports and suggestions for improvements are alwayswelcome. github pull requests are even better! :-)
I'd like to include a nice variety of Emacs 24 themes into Prelude -so if you've developed (or simply found) one - give me a shout andI'll take a look at it.
Cheers,<br>Bozhidar
|