summaryrefslogtreecommitdiff
path: root/lua/plugins/init.lua
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-06-03 12:22:09 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-06-03 12:22:09 -0600
commitad9bdf2f20ce1357c788a749117a3a5d2d3a3c01 (patch)
tree6503f3b07d1cf5f38187dda84f0d22812c7dd936 /lua/plugins/init.lua
parent5ecf844b1f2efbdc86b1653483f17d7ecb39f8ee (diff)
move some mappings into telescope config, separate fzf
Diffstat (limited to 'lua/plugins/init.lua')
-rw-r--r--lua/plugins/init.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua
index b9f4cbb..9478ab5 100644
--- a/lua/plugins/init.lua
+++ b/lua/plugins/init.lua
@@ -74,18 +74,6 @@ return {
-- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} },
- -- Fuzzy Finder (files, lsp, etc)
- { 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
-
- -- Fuzzy Finder Algorithm which requires local dependencies to be built
- {
- 'nvim-telescope/telescope-fzf-native.nvim',
- build = 'make',
- cond = function()
- return vim.fn.executable 'make' == 1
- end,
- },
-
{
-- Highlight, edit, and navigate code
'nvim-treesitter/nvim-treesitter',