LunarVim/lua/lv-snap/init.lua
Cam Spiers c1c4e63e5b
Add snap as an optional alternative to telescope (#582)
Co-authored-by: Cam Spiers <cam.spiers@jnctn.nz>
2021-07-02 14:18:57 -04:00

14 lines
528 B
Lua

local M = {}
M.config = function()
local snap = require "snap"
local layout = snap.get"layout".bottom
local file = snap.config.file:with {consumer = "fzy", layout = layout}
local vimgrep = snap.config.vimgrep:with {layout = layout}
snap.register.command("find_files", file {producer = "ripgrep.file"})
snap.register.command("buffers", file {producer = "vim.buffer"})
snap.register.command("oldfiles", file {producer = "vim.oldfile"})
snap.register.command("live_grep", vimgrep {})
end
return M