Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/velrest/balsamik.kak
A simple WIP file navigator for kakoune heavily inspired by vim's netrw and tpope/vim-vinegar
https://github.com/velrest/balsamik.kak
kakoune plugin vim-vinegar
Last synced: 7 days ago
JSON representation
A simple WIP file navigator for kakoune heavily inspired by vim's netrw and tpope/vim-vinegar
- Host: GitHub
- URL: https://github.com/velrest/balsamik.kak
- Owner: velrest
- License: unlicense
- Created: 2020-01-22T19:57:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T16:14:15.000Z (over 4 years ago)
- Last Synced: 2024-11-08T19:53:14.571Z (2 months ago)
- Topics: kakoune, plugin, vim-vinegar
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# balsamik.kak
A simple **WIP** file navigator for kakoune heavily inspired by vim's netrw and
tpope/vim-vinegar## Installation
You can install it with andreyorst/plug.kak:
```
plug "velrest/balsamik.kak"
```This is still in a very unoptimized and unusable state.
## Usage with alexherbo2/explore.kak
You can use balsamik easily with explore.kak you just have to set the following
in you configuration:
```
plug 'alexherbo2/explore.kak' config %{
alias global explore-files balsamik
}
```## vim-vinegar like mapping to open files with -
For this you just have to create a mapping and pass the current `bufname` to
balsamik:
```
hook global BufOpenFile .* %{
map -- buffer normal - ": balsamik %val{bufname}"
}
```## Todo
- Document keybindings