13 lines
248 B
Lua
13 lines
248 B
Lua
vim.pack.add({ "https://github.com/otavioschwanck/arrow.nvim" })
|
|
|
|
local ok, arrow = pcall(require, "arrow")
|
|
if ok then
|
|
arrow.setup({
|
|
show_icons = false,
|
|
leader_key = "_",
|
|
buffer_leader_key = " m",
|
|
})
|
|
else
|
|
print("plugin arrow missing")
|
|
end
|