Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ space-tree is a library for managing spaces (workspaces) in Emacs. It is inspire
(use-package space-tree
:ensure (:host github :repo "chiply/space-tree")
:config
(space-tree-init))
(space-tree-init)
(space-tree-init-frames))
```

### With straight.el (use-package)
Expand All @@ -32,7 +33,8 @@ space-tree is a library for managing spaces (workspaces) in Emacs. It is inspire
(use-package space-tree
:straight (:host github :repo "chiply/space-tree")
:config
(space-tree-init))
(space-tree-init)
(space-tree-init-frames))
```

### Manual
Expand All @@ -43,6 +45,7 @@ Clone the repository and add it to your `load-path`:
(add-to-list 'load-path "/path/to/space-tree")
(require 'space-tree)
(space-tree-init)
(space-tree-init-frames)
```

## Usage
Expand Down
Loading