mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 06:50:04 +08:00
38 lines
795 B
Lua
38 lines
795 B
Lua
local MODREV, SPECREV = 'scm', '-1'
|
|
rockspec_format = '3.0'
|
|
package = 'telescope.nvim'
|
|
version = MODREV .. SPECREV
|
|
|
|
description = {
|
|
summary = 'Find, Filter, Preview, Pick. All lua, all the time.',
|
|
detailed = [[
|
|
A highly extendable fuzzy finder over lists.
|
|
Built on the latest awesome features from neovim core.
|
|
Telescope is centered around modularity, allowing for easy customization.
|
|
]],
|
|
labels = { 'neovim', 'plugin', },
|
|
homepage = 'https://github.com/nvim-telescope/telescope.nvim',
|
|
license = 'MIT',
|
|
}
|
|
|
|
dependencies = {
|
|
'lua == 5.1',
|
|
'plenary.nvim',
|
|
}
|
|
|
|
source = {
|
|
url = 'git://github.com/nvim-telescope/telescope.nvim',
|
|
}
|
|
|
|
build = {
|
|
type = 'builtin',
|
|
copy_directories = {
|
|
'doc',
|
|
'ftplugin',
|
|
'plugin',
|
|
'scripts',
|
|
'autoload',
|
|
'data',
|
|
}
|
|
}
|