From 618607ffd66c4a9786b0f128204d0d9df2270029 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Tue, 3 Jan 2023 17:52:51 -0800 Subject: Enable telescope.nvim --- lua/user/plugins.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lua/user/plugins.lua') diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index ad9ba8e..03a5d2b 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -9,7 +9,7 @@ return packer.startup(function(use) -- My plugins here use "wbthomason/packer.nvim" -- Have packer manage itself --use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim - --use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins + use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins -- Colorschemes --use "lunarvim/colorschemes" -- Additional colorschemes @@ -36,8 +36,10 @@ return packer.startup(function(use) use "williamboman/mason.nvim" use "williamboman/mason-lspconfig.nvim" - -- TreeSitter use "nvim-treesitter/nvim-treesitter" --enable treesitter + -- Telescope + use { "nvim-telescope/telescope.nvim", tag = '0.1.0' } + end) -- cgit