diff --git a/lua/pluginList.lua b/lua/pluginList.lua index ba7fdc5..7029811 100644 --- a/lua/pluginList.lua +++ b/lua/pluginList.lua @@ -84,7 +84,10 @@ return packer.startup( require("plugins.compe").snippets() end }, - "rafamadriz/friendly-snippets" + { + "rafamadriz/friendly-snippets", + event = "InsertCharPre" + } } } @@ -110,9 +113,7 @@ return packer.startup( "nvim-telescope/telescope.nvim", requires = { {"nvim-lua/popup.nvim"}, - {"nvim-lua/plenary.nvim"}, - {"nvim-telescope/telescope-fzf-native.nvim", run = "make"}, - {"nvim-telescope/telescope-media-files.nvim"} + {"nvim-lua/plenary.nvim"} }, cmd = "Telescope", config = function() @@ -120,6 +121,13 @@ return packer.startup( end } + use {"nvim-telescope/telescope-fzf-native.nvim", run = "make", cmd = "Telescope"} + + use { + "nvim-telescope/telescope-media-files.nvim", + cmd = "Telescope" + } + -- git stuff use { "lewis6991/gitsigns.nvim",