diff options
author | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:32:42 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:32:42 -0600 |
commit | fcd03a342b5d1db8e9066b0a61f07ce0ffb25f3a (patch) | |
tree | f1c444a548a18aae769453debf9cca93a44ddbe4 /lua/conf | |
parent | eb4457fa5693beb6f2b397e265146703d89eb34a (diff) | |
download | nvim-fcd03a342b5d1db8e9066b0a61f07ce0ffb25f3a.tar.gz nvim-fcd03a342b5d1db8e9066b0a61f07ce0ffb25f3a.tar.bz2 nvim-fcd03a342b5d1db8e9066b0a61f07ce0ffb25f3a.zip |
actually enable the telescope fzf plugin
Diffstat (limited to 'lua/conf')
-rw-r--r-- | lua/conf/plugins/telescope.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/conf/plugins/telescope.lua b/lua/conf/plugins/telescope.lua index 6a1b1c2..28ad327 100644 --- a/lua/conf/plugins/telescope.lua +++ b/lua/conf/plugins/telescope.lua @@ -61,6 +61,10 @@ return { 'nvim-telescope/telescope.nvim', } } + -- load in the fzf extension + telescope.load_extension('fzf') + + -- keymaps local telebuilt = require('telescope.builtin') map('n', '<leader>f', function() telebuilt.fd { follow = true } |