Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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