tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
doc: add readme
robinwobin.dev
4 months ago
08b47c36
65476564
+46
1 changed file
expand all
collapse all
unified
split
README.md
+46
README.md
···
1
1
+
# artio.nvim
2
2
+
3
3
+
A minimal, nature-infused file picker for Neovim using the new extui window.
4
4
+
Inspired by forest spirits and the calm intuition of hunting, Artio helps you gently select files without the weight of heavy fuzzy-finder dependencies.
5
5
+
6
6
+
## features
7
7
+
8
8
+
- Lightweight picker window built on Neovim's extui
9
9
+
- Prompt + list UI components - minimal and focused
10
10
+
- Fuzzy filtering using matchfuzzy (built-in)
11
11
+
- No heavy dependencies - pure Lua
12
12
+
13
13
+
## installation
14
14
+
15
15
+
`vim.pack`
16
16
+
17
17
+
```lua
18
18
+
vim.pack.add({ src = "https://github.com/comfysage/artio.nvim" })
19
19
+
```
20
20
+
21
21
+
`lazy.nvim`
22
22
+
23
23
+
```lua
24
24
+
{
25
25
+
"comfysage/artio.nvim", lazy = false,
26
26
+
}
27
27
+
```
28
28
+
29
29
+
## configuration
30
30
+
31
31
+
```lua
32
32
+
require("artio").setup({
33
33
+
opts = {
34
34
+
preselect = true,
35
35
+
bottom = true,
36
36
+
promptprefix = "",
37
37
+
pointer = "",
38
38
+
},
39
39
+
win = {
40
40
+
height = 12,
41
41
+
hidestatusline = false, -- works best with laststatus=3
42
42
+
},
43
43
+
})
44
44
+
45
45
+
vim.keymap.set("n", "<leader><leader>", "<Plug>(picker-find)")
46
46
+
```