diff options
| author | kylo252 <[email protected]> | 2022-04-12 11:18:17 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-04-12 11:18:17 +0200 | 
| commit | 1569202d39c40d7a44de5eb1b10cf203dd33af41 (patch) | |
| tree | f44862786fe8d39e5f7cd2ec7d0c101b27bc68ba /lua/lvim/plugins.lua | |
| parent | 3de6a404c92e495baa8688aa76d98c4ea9caa8c7 (diff) | |
fix(impatient): avoid get_options in fast handler (#2451)
Diffstat (limited to 'lua/lvim/plugins.lua')
| -rw-r--r-- | lua/lvim/plugins.lua | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 29620009..f5b9914c 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -190,6 +190,7 @@ local core_plugins = {      config = function()        require("lvim.core.bufferline").setup()      end, +    branch = "main",      event = "BufWinEnter",      disable = not lvim.builtin.bufferline.active,    }, @@ -225,6 +226,7 @@ local core_plugins = {    {      "akinsho/toggleterm.nvim",      event = "BufWinEnter", +    branch = "main",      config = function()        require("lvim.core.terminal").setup()      end,  | 
