mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
feat: add Dotbot
This commit is contained in:
16
config/nvim/lua/plugins/telescope-smart-open.lua
Normal file
16
config/nvim/lua/plugins/telescope-smart-open.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
-- Neovim plugin for fast file-finding
|
||||
-- https://github.com/danielfalk/smart-open.nvim
|
||||
return {
|
||||
"danielfalk/smart-open.nvim",
|
||||
branch = "0.2.x",
|
||||
keys = {
|
||||
{ ";o", "<cmd>Telescope smart_open<cr>", desc = "Smart Open" },
|
||||
},
|
||||
config = function()
|
||||
require("telescope").load_extension("smart_open")
|
||||
end,
|
||||
dependencies = {
|
||||
"kkharji/sqlite.lua",
|
||||
{ "nvim-telescope/telescope-fzy-native.nvim" },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user