Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vedang/revive-mode
A tool to save and revive your emacs frame configuration.
https://github.com/vedang/revive-mode
Last synced: about 2 months ago
JSON representation
A tool to save and revive your emacs frame configuration.
- Host: GitHub
- URL: https://github.com/vedang/revive-mode
- Owner: vedang
- Created: 2012-01-16T17:07:52.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-03-09T09:46:24.000Z (almost 11 years ago)
- Last Synced: 2024-10-08T07:21:25.080Z (3 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 118 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* revive-mode
Revive mode is handy if you wish to save and restore your emacs buffers and frames. Simply put this somewhere in your load path and add the following to your .emacs:=(require 'revive-mode-config)=
* Easy is better.
I find these keybindings and settings helpful when actually using revive-mode. Add them to your .emacs if you wish:#+begin_src emacs-lisp
(define-key ctl-x-map "S" 'emacs-save-layout)
(define-key ctl-x-map "F" 'emacs-load-layout)
(add-hook 'kill-emacs-hook 'emacs-save-layout)
#+end_src