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
meta: reload module on vimenter
robinwobin.dev
3 months ago
a2189e7c
d8baaee5
+5
-1
1 changed file
expand all
collapse all
unified
split
.nvim.lua
+5
-1
.nvim.lua
···
5
5
6
6
vim.cmd([[ set rtp^=. ]])
7
7
8
8
-
R("artio").setup()
8
8
+
vim.api.nvim_create_autocmd("UIEnter", {
9
9
+
callback = function()
10
10
+
R("artio").setup()
11
11
+
end,
12
12
+
})
9
13
10
14
vim.cmd([[ noremap <leader>r <cmd>restart<cr> ]])
11
15