summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorLouie Shprung <lshprung@scu.edu>2023-01-03 17:52:51 -0800
committerLouie Shprung <lshprung@scu.edu>2023-01-03 17:59:23 -0800
commit618607ffd66c4a9786b0f128204d0d9df2270029 (patch)
tree8add9206b6ac6f8f2f8d41fe8bbbc5b8cb0f7e3a /lua/user/plugins.lua
parentaffe302e2134608ec9073874d5522ae5e42972f3 (diff)
Enable telescope.nvim
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua6
1 files changed, 4 insertions, 2 deletions
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)