Refactor plugin configs for safe import

This commit is contained in:
Arkaprabha Chakraborty
2023-03-05 07:23:25 +05:30
parent 83d16eaddd
commit 38bb5e1b6a
7 changed files with 139 additions and 127 deletions

View File

@@ -42,7 +42,7 @@ if colorscheme == "onedark" then
})
-- Load One Dark
require("onedark").load()
onedark.load()
end
if colorscheme == "catppuccin" then
@@ -96,7 +96,7 @@ if colorscheme == "catppuccin" then
})
-- Load Catppuccin
require("catppuccin").load()
catppuccin.load()
end
if colorscheme == "gruvbox" then
@@ -126,5 +126,5 @@ if colorscheme == "gruvbox" then
})
-- Load Gruvbox
require("gruvbox").load()
gruvbox.load()
end