diff options
author | christianchiarulli <[email protected]> | 2021-07-05 15:35:06 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-05 15:35:06 -0400 |
commit | be9a5a08893b2c45ffa43e8372b3135747ee0df8 (patch) | |
tree | 6467159a20335ab8ce7098e8c5de44d191a6410c /lua/plugins.lua | |
parent | 6b41286d70b71184b915724a0a03ccd8ec3b4e16 (diff) |
user defined plugins
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 1a857c66..b14cac46 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -459,4 +459,6 @@ return require("packer").startup(function(use) requires = "hrsh7th/nvim-compe", disable = not O.plugin.tabnine.active, } + for _, plugin in pairs(O.custom_plugins) do packer.use(plugin) end + end) |