A community-driven Emacs distribution - The best editor is neither Emacs nor Vim, it's Emacs *and* Vim!
Go to file
syl20bnr 5a05f3c0da Fixes #152 missing update section in readme 2014-11-24 23:04:43 -05:00
contrib Problems with company-auctex fixed upstream 2014-11-22 20:14:52 -05:00
core Add makefile to launch tests and dummy tests 2014-11-23 10:24:24 -05:00
doc Add screenshot of spacemacs in urxvt 2014-10-28 21:24:22 -04:00
private readme tweaks 2014-11-22 00:53:13 -05:00
spacemacs Added toggle for visual-line-mode 2014-11-24 22:57:39 -05:00
.gitignore Create private directory 2014-11-21 21:06:11 -05:00
.gitmodules Remove nose and pylookup submodules 2014-11-14 23:14:33 -05:00
.projectile Clean .projectile file content 2014-11-21 21:55:19 -05:00
CONTRIBUTE.md Fix typos in contribute 2014-11-14 22:30:22 -05:00
CONVENTIONS.md Add CONVENTIONS.md file 2014-11-23 10:27:22 -05:00
DOCUMENTATION.md Add documentation for `<SPC> t L` toggle visual lines 2014-11-24 22:58:13 -05:00
README.md Fixes #152 missing update section in readme 2014-11-24 23:04:43 -05:00
init.el Move variable definitions from init.el to spacemacs-mode.el 2014-11-21 22:14:58 -05:00

README.md

title ![Gitter](https://badges.gitter.im/Join Chat.svg)Twitter

philosophy | goals | for who? | screenshots | achievements | contribute | documentation

Quick Install:

git clone --recursive http://github.com/syl20bnr/spacemacs ~/.emacs.d

Introduction

Spacemacs is a user-friendly and well-documented Emacs Advanced kit.

Advanced means here that it heavily and happily performs non-trivial tweaks and customization in order to make itself easy to use and unique.

Advanced does not mean that you have to be an advanced Emacs user, beginners are welcome and encouraged to use Spacemacs since it provides a simple architecture to contribute changes and hack others contributions.

Its status is beta for now, essentially because of the configuration system that is not yet finished but already usable.

And now, to use a well known catch line from Emacs Live:

M-x start-spacing !

Features

Convenient and Mnemonic Key Bindings

Spacemacs organizes key bindings by mnemonic namespaces. If you are looking for commands to operate on your buffer, they are right under <SPC> b, if you want to operate on your project, then it is <SPC> p, etc...

There is no need to learn convoluted Emacs chords, everything you need is under bindings that are easy to type and easy to remember.

Excellent Evil Support

Spacemacs comes with Vim modal editing through Evil Mode. Everything is designed with it in mind from the key bindings to the user interface. This includes fancy goodies like a micro-state for editing all occurences of a symbol and extra packages like ace-jump,evil-lisp-state and evil-nerd-commenter.

Batteries Included

Comes with configuration for hundreds of packages that make it fantastic out of the box. Many languages like Python, Ruby, Scala, R, SCSS, Elixir and Javascript come with modes, configuration and convenient key bindings. It also comes with Git support, project management and auto-completion. And all of this is optimized and lazy-loaded so you still get fast boot times!

And if that isn't enough you can use community contributed configuration layers for nice configurations of packages that aren't in the default distribution.

Great Documentation

Most Spacemacs features come with extensive documentation including key bindings, configuration options and explanations for beginners. And if you can't find the answers you need, ask your question in the Gitter Chat and a member of the community will help you out.

Visit the Documentation

Nice UI

Spacemacs is designed to look nice in a minimal and functional way. It comes with good theme support and a highly customized Powerline. The Powerline includes features like quick window switching numbers, Evil mode colors, and nice mode icons.

spacemacs_python

Prerequisites

Spacemacs is tested with Emacs 24.3 and 24.4. It should boot on all the major OSes where these versions can be installed.

Some modes require third-party tools that you'll have to install via your favorite package manager.

Install

  1. Backup your current ~/.emacs.d and clone the repo with the submodules:

    cd ~ mv .emacs.d .emacs.bak git clone --recursive http://github.com/syl20bnr/spacemacs ~/.emacs.d

master is a stable branch, if you want the "bleeding edge" checkout the develop branch.

  1. Launch Emacs, the first time a bunch of packages will be downloaded and installed. When the package installation is complete restart Emacs and Spacemacs should be ready to use.

In case of failure see troubleshoot section in documentation.

Update

For now the update of Spacemacs is manual.

  1. It is important to first update the Emacs packages. In Emacs:
<SPC> : package-list-packages RET U x RET

When asked for old packages deletion enter y.

  1. Close Emacs and update the git repository:
$ git pull --rebase
$ git submodule sync; git submodule update

Then restart Emacs.

Configuration

Configuration layers

Spacemacs is based on configuration layers. To create your own configuration layer:

<SPC> : config-system/create-layer RET

After entering a name, a layer skeleton will be created in the private directory. The private directory is ignored by Git.

To use your newly created configuration layer, add it to your ~/.spacemacs file (see next section).

Dotfile ~/.spacemacs

Spacemacs has a convenient dotfile. You have to install it by invoking the following command inside Emacs:

<SPC> : dotspacemacs/install RET

Refers directly to the file ~/.spacemacs to get documentation or navigate to the dotfile configuration section of DOCUMENTATION.md.

Learning Spacemacs

Key bindings discovery

Thanks to guide-key, whenever a prefix command is pressed (like <SPC>) a buffer appears after one second listing the possible keys for this prefix.

It is also possible to search for specific key bindings by pressing:

<SPC> ?

To narrow the list to Spacemacs key bindings starting with prefix <SPC>, set the pattern to something like the regular expression:

`SPC\ b`

The example above will list all the buffer related bindings.

Describe functions

Describe functions are powerful Emacs introspection commands to get information about functions, variables, modes and so on.

These functions are accessible with the following bindings:

Key Binding Description
<SPC> h d f describe-function
<SPC> h d k describe-key
<SPC> h d m describe-mode
<SPC> h d v describe-variable

Contributions

Spacemacs needs you!

Especially to grow the number of configuration layers, for instance to support new languages.

If you are ready to contribute please consult the contribution guidelines first.