23 lines
539 B
Markdown
23 lines
539 B
Markdown
# git.kak, a complementary set of Git tools for Kakoune
|
|
|
|
|
|
## Installation
|
|
|
|
Go in your config path — e.g. `~/.config/kak`, and clone this repository or link it in any
|
|
subdirectory of `autoload`. For instance:
|
|
|
|
```
|
|
cd ~/.config/kak
|
|
mkdir -p autoload/plugins
|
|
cd autoload/plugins
|
|
git clone https://git.sr.ht/~hadronized/git.kak
|
|
```
|
|
|
|
## Usage
|
|
|
|
Most of the tools are available via the `git` user-mode. Typical usage would be to place it under the user
|
|
mode, for instance:
|
|
|
|
```
|
|
map global user g ':enter-user-mode git<ret>'
|
|
```
|