Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.36 KB

GET_STARTED.org

File metadata and controls

48 lines (36 loc) · 1.36 KB

GET STARTED

Dependencies

Emacs >= 27.2

Installation

Meow is available on Melpa, you can install it with your favorite package manager.

Try without installation

If you want to give it a try without touching your configuration.

git clone https://github.com/meow-edit/meow.git /path/to/meow
cd /path/to/meow
emacs -q -L . -l meow.el

Continue with the next steps.

Set up command layout

Meow has no default command layout. You can write your own setup function from scratch or pick one from below as your starting point.

Enable meow globally

Add the following code to your configuration.

<define your meow-setup>
(require 'meow)
(meow-setup)
(meow-global-mode 1)

Tutorial in Emacs

Now you can open the tutorial with M-x meow-tutor.

Cheatsheet

If everything works as expected, now you can open the cheatsheet with SPC ?.

The keyboard layout in the cheatsheet is customizable. By default, it’s the ANSI layout, but the ISO layout is also supported.

(setq meow-cheatsheet-physical-layout meow-cheatsheet-physical-layout-ansi)