diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 09:54:53 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 09:54:53 -0800 |
commit | 8ed11a2ee3405435848fe80015d594f403a55a14 (patch) | |
tree | 950b5a5b7842d94241eafbf8d95f9c967564a9d7 | |
parent | [emacs] Add support for Ansible (diff) | |
download | emacs.d-8ed11a2ee3405435848fe80015d594f403a55a14.tar.gz |
Convert the README to org-mode.
Editing tables is way easier in org-mode than it is with markdown.
-rw-r--r-- | README.md | 43 | ||||
-rw-r--r-- | README.org | 68 |
2 files changed, 68 insertions, 43 deletions
diff --git a/README.md b/README.md deleted file mode 100644 index 8070a3d..0000000 --- a/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# Home - -Collection of dotfiles. - -## Emacs - -### Bindings - -Key | Action -----|------- -C-x | magit-status -M-j | join-line -C-x C-b | ibuffer -super-return | toggle-fullscreen -M-: | evaluate elisp -C-h f | display help about a function -C-h k | which function is binded to a sequence of keys - -For smartparens - -Key | Action -----|------- -C-M-f | Move forward across one expression -C-M-b | Move backward across one expression -C-M-d | Move forward down one level -C-M-a | Move backward down one level -C-S-a | Jump to the beginning of the sexp -C-S-e | Jump to the end of the sexp -C-M-f | Move across one expression -C-M-b | Move backward across one expression -C-M-u | Move backward out of one level -C-M-t | Transpose the expression around the point -C-M-n | Move forward to the beginning of the next expression -C-M-p | Move backward to the end of the previous expression -C-M-k | Kill the expression -C-M-w | Copy the expression -M-<delete> | unwrap the expression -M-<backspace> | unwrap the previous expression -M-<right> | Add following expression in current expression -M-<left> | Remove the last expression in the current list -M-S-<right> | Add the sexp preceding the current list in it by moving the opening delimiter. -M-S-<left> | -M-d | Unwrap the current list. diff --git a/README.org b/README.org new file mode 100644 index 0000000..259fbe9 --- /dev/null +++ b/README.org @@ -0,0 +1,68 @@ +* Home + +My personal configuration files. + +** Emacs + +*** Bindings + +| Binding | Description | +|--------------+------------------------------------------------| +| M-j | Join lines | +| super-return | Toggle fullscreen | +| C-h f | Display help about a function | +| C-h k | Which function is binded to a sequence of keys | +| | | + +For smartparens + +Key | Action +----|------- +C-M-f | Move forward across one expression +C-M-b | Move backward across one expression +C-M-d | Move forward down one level +C-M-a | Move backward down one level +C-S-a | Jump to the beginning of the sexp +C-S-e | Jump to the end of the sexp +C-M-f | Move across one expression +C-M-b | Move backward across one expression +C-M-u | Move backward out of one level +C-M-t | Transpose the expression around the point +C-M-n | Move forward to the beginning of the next expression +C-M-p | Move backward to the end of the previous expression +C-M-k | Kill the expression +C-M-w | Copy the expression +M-<delete> | unwrap the expression +M-<backspace> | unwrap the previous expression +M-<right> | Add following expression in current expression +M-<left> | Remove the last expression in the current list +M-S-<right> | Add the sexp preceding the current list in it by moving the opening delimiter. +M-S-<left> | +M-d | Unwrap the current list. + +** Modes + +*** Magit + +| Binding | Description | +|---------+--------------| +| C-x g | Magit status | +| | | + +*** Projectile + +| Binding | Description | +|---------+---------------------------------------------| +| C-c p k | Kill all the buffers related to the project | +| C-c p p | Switch to a project | +| C-c p f | Find file in a project | +| C-c p b | Switch to a buffer of the project | + +*** Puppet + +| Binding | Description | +|---------+---------------------------------------| +| C-c C-a | Align parameters in the current block | +| C-c C-' | Toggle ' and " | +| | | + |