|
@@ -1,8 +1,9 @@
|
|
require "default-config"
|
|
require "default-config"
|
|
require "keymappings"
|
|
require "keymappings"
|
|
-local status_ok, _ = pcall(vim.cmd, "luafile " .. CONFIG_PATH .. "/lv-config.lua")
|
|
|
|
|
|
+local status_ok, error = pcall(vim.cmd, "luafile " .. CONFIG_PATH .. "/lv-config.lua")
|
|
if not status_ok then
|
|
if not status_ok then
|
|
print "something is wrong with your lv-config"
|
|
print "something is wrong with your lv-config"
|
|
|
|
+ print(error)
|
|
end
|
|
end
|
|
require "plugins"
|
|
require "plugins"
|
|
vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs.
|
|
vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs.
|