diff options
author | kylo252 <[email protected]> | 2021-08-26 12:49:29 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-26 12:49:29 +0200 |
commit | 5b94e3cee2c4405e98c9c0e8769670723a1f4bae (patch) | |
tree | beb76ee514df69240d6e954b25372412a0316b2a /init.lua | |
parent | cfefddde9e9376e68ad8fcad3b1cf8cf139456e6 (diff) |
fix logging when plenary is not available (#1390)
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -24,6 +24,10 @@ config:load() local plugins = require "plugins" local plugin_loader = require("plugin-loader").init() plugin_loader:load { plugins, lvim.plugins } + +local Log = require("core.log").new_default() +Log:info "Starting LunarVim" + vim.g.colors_name = lvim.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs. vim.cmd("colorscheme " .. lvim.colorscheme) |