diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-31 01:23:35 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-31 01:23:35 +0300 |
commit | 4c1f64d1bd21d948d2f2f7c6773501b3115707c3 (patch) | |
tree | 6fa76ca2d8edb36cfaecb02269cee4ce74620d56 /lua/plugins.lua | |
parent | 9d14d088899ef7b973670ab25e91e702e24dc652 (diff) | |
download | nvim-config-4c1f64d1bd21d948d2f2f7c6773501b3115707c3.tar.xz nvim-config-4c1f64d1bd21d948d2f2f7c6773501b3115707c3.zip |
Добавил поиск по файлам и содержимому
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index ad088a3..2e3cd94 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -27,6 +27,15 @@ return require('packer').startup(function(use) end, } + -- Поиск по файлам и буферам + use { + 'nvim-telescope/telescope.nvim', + requires = { { 'nvim-lua/plenary.nvim' } }, + config = function() + require('telescope').setup {} + end, + } + -- Комментирование строк use { 'numToStr/Comment.nvim', |