From 406b83c0511107aaef5407dd1803a3c71a9bdc8b Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 22 Apr 2024 13:31:47 +0200 Subject: [PATCH] Install telescope --- lazy-lock.json | 5 +++++ lua/core/lazy.lua | 1 + lua/plugins/telescope.lua | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 lazy-lock.json create mode 100644 lua/plugins/telescope.lua diff --git a/lazy-lock.json b/lazy-lock.json new file mode 100644 index 0000000..b4c9d10 --- /dev/null +++ b/lazy-lock.json @@ -0,0 +1,5 @@ +{ + "lazy.nvim": { "branch": "main", "commit": "3f13f080434ac942b150679223d54f5ca91e0d52" }, + "plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" }, + "telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" } +} \ No newline at end of file diff --git a/lua/core/lazy.lua b/lua/core/lazy.lua index 4b1b171..60c07f0 100644 --- a/lua/core/lazy.lua +++ b/lua/core/lazy.lua @@ -10,3 +10,4 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then }) end vim.opt.rtp:prepend(lazypath) +require("lazy").setup("plugins") diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua new file mode 100644 index 0000000..69de922 --- /dev/null +++ b/lua/plugins/telescope.lua @@ -0,0 +1,4 @@ +return { + 'nvim-telescope/telescope.nvim', tag = '0.1.6', + dependencies = { 'nvim-lua/plenary.nvim' } +}