telescope.lua

~/.config/nvim/lua/plugins/telescope.lua
-- plugins/telescope.lua:
if true then
  return {}
else
  return {
    'nvim-telescope/telescope.nvim',
    tag = '0.1.8',
    dependencies = {
      'nvim-lua/plenary.nvim',
      {
        'nvim-telescope/telescope-fzf-native.nvim',
        build = 'make'
      },
    },
  }
end

Comments