diff options
Diffstat (limited to 'lua/core/terminal.lua')
-rw-r--r-- | lua/core/terminal.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/core/terminal.lua b/lua/core/terminal.lua index 0f930453..b7c58c0d 100644 --- a/lua/core/terminal.lua +++ b/lua/core/terminal.lua @@ -1,6 +1,6 @@ local M = {} M.config = function() - O.plugin["terminal"] = { + lvim.builtin["terminal"] = { -- size can be a number or function which is passed the current terminal size = 5, -- open_mapping = [[<c-\>]], @@ -47,8 +47,8 @@ M.setup = function() "<cmd>lua require('core.terminal')._lazygit_toggle()<CR>", { noremap = true, silent = true } ) - O.plugin.which_key.mappings["gg"] = "LazyGit" - terminal.setup(O.plugin.terminal) + lvim.builtin.which_key.mappings["gg"] = "LazyGit" + terminal.setup(lvim.builtin.terminal) end local function is_installed(exe) |