summaryrefslogtreecommitdiff
path: root/lua/plugins/telescope-fzf-native.lua
blob: 1fe2371e4b105adde2a5bf3c718a36efa269b21f (plain)
1
2
3
4
5
6
7
8
return {
  'nvim-telescope/telescope-fzf-native.nvim',
  build = 'make',
  config = function()
    pcall(require('telescope').load_extension, 'fzf')
    return vim.fn.executable 'make' == 1
  end,
}