diff options
author | christianchiarulli <[email protected]> | 2021-07-08 17:17:45 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-08 17:17:45 -0400 |
commit | 9b1d18a1c172e09bc44a9c80b79d1d9cb37a140a (patch) | |
tree | 148adcad1734fe77aa858612fb1421cd9f089ceb /init.lua | |
parent | 25cfc15b46039f4a40a23d83cc555ff02a39f086 (diff) | |
parent | 4f372bb3b77f5bc60aa14fdaf2b9687414fc981a (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,10 +3,11 @@ require "keymappings" vim.cmd("luafile " .. CONFIG_PATH .. "/lv-config.lua") require "settings" require "plugins" +vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs. require "lv-utils" require "lv-treesitter" if O.plugin.dashboard.active then - require("lv-dashboard").config() + require("lv-dashboard").config() end -- TODO these gues need to be in language files -- require "lsp" |