From 3fd08e75e906859da69f72b3beb9a34f03700b7f Mon Sep 17 00:00:00 2001 From: krolyxon Date: Thu, 26 Jan 2023 00:13:47 +0530 Subject: [PATCH] kterm remove un-needed pcals --- lua/plugins/configs/kterm.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lua/plugins/configs/kterm.lua b/lua/plugins/configs/kterm.lua index d957d00..00cfca4 100644 --- a/lua/plugins/configs/kterm.lua +++ b/lua/plugins/configs/kterm.lua @@ -1,9 +1,3 @@ -local present, kterm = pcall(require, "kterm") - -if not present then - return -end - local options = { terminals = { list = {}, @@ -27,4 +21,4 @@ local options = { enable_new_mappings = true, } -kterm.setup(options) +require("kterm").setup(options)