Compare commits

...

2 commits

Author SHA1 Message Date
2f0e8a46c3
drop fzf-native 2023-05-04 12:26:37 -05:00
e059b1f38a
correctly source extras 2023-05-04 12:26:37 -05:00
2 changed files with 1 additions and 14 deletions

View file

@ -24,19 +24,6 @@ return {
opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "emoji" } }))
end,
},
-- add telescope-fzf-native
-- do I need this tho? maybe the native is faster?
{
"telescope.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
config = function()
require("telescope").load_extension("fzf")
end,
},
},
{
"williamboman/mason.nvim",
opts = {

View file

@ -38,7 +38,7 @@ path=(
)
# start by sourcing extras
for rcfile in $ZDOTDIR/.extras/current/*.{,z}sh(N); do
for rcfile in $ZDOTDIR/.extras/{current,shared}/*.{,z}sh(N); do
source $rcfile
done