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)