From 98f8a77819670ce6012216e01885c135a6d3a289 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sat, 24 Jul 2021 21:17:11 -0400 Subject: New contract (#1080) Changes to the global config object O is now lvim user_plugins is now plugins user_autocommands is now autocommands No more lang specific plugins Null-ls has replaced both formatter.nvim and nvim-lint --- lua/core/terminal.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/core/terminal.lua') 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 = [[]], @@ -47,8 +47,8 @@ M.setup = function() "lua require('core.terminal')._lazygit_toggle()", { 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) -- cgit v1.2.3