forked from syl20bnr/spacemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
1. Private layers | ||
1. Dotfile | ||
|
||
It is now possible to reload the dotfile and layers anywhere with `SPC f e | ||
R`. This key binding **replaces** the old `C-c C-c` and `SPC m c c` only | ||
R`. This key binding *replaces* the old `C-c C-c` and `SPC m c c` only | ||
available in the dotfile. | ||
|
||
**Important** You should replace your `(defvar <layer>-packages ...)`, | ||
*Important* You should replace your `(defvar <layer>-packages ...)`, | ||
`(defvar <layer>-pre-extensions ...)`, `(defvar <layer>-post-extensions ...)` | ||
and `(defvar <layer>-excluded-packages ...)` by `(setq ...)`. This will | ||
allow to install newly added packages to a layer without restarting spacemacs | ||
by pressing `SPC f e R`. Be sure to remove the docstring when replacing the | ||
`defvar` since `setq` does not take a third argument. | ||
|
||
2. Emacs lisp is now in its own layer | ||
`:variables` keyword now behaves like a regular `setq` so you'll have to | ||
quote any value appropriately. | ||
|
||
Be sure to add the new layer `emacs-lisp` to your dotfile to continue | ||
to enjoy the emacs-lisp configuration of Spacemacs. | ||
2. Emacs lisp and Shell config are now in their own layers | ||
|
||
Be sure to add the new layers `emacs-lisp` and `shell` to your dotfile to | ||
continue to enjoy the emacs-lisp and shell configurations of Spacemacs. | ||
|
||
Also be sure to check the key binding `SPC '` to open a shell buffer. | ||
|
||
3. Key bindings | ||
|
||
`SPC b s` to switch buffer is now on `SPC b b` | ||
`SPC f f` uses helm instead of ido | ||
`SPC b s` to switch buffer is now on `SPC b b`. | ||
`SPC f f` uses helm instead of ido, set the new variable. | ||
`dotspacemacs-use-ido` to t to get back the old ido behavior. | ||
`TAB` and `C-z` in helm buffers have been *swapped*. | ||
|
||
4. Sentence delimiter | ||
|
||
Sentence delimiter is now a *single space* as opposed to Emacs default | ||
which is double spaces. |