LunarVim/init.lua

19 lines
579 B
Lua
Raw Normal View History

2021-07-05 03:14:01 +02:00
require "default-config"
require "keymappings"
2021-07-10 09:19:32 +02:00
local status_ok, _ = pcall(vim.cmd, "luafile " .. CONFIG_PATH .. "/lv-config.lua")
if not status_ok then
print "something is wrong with your lv-config"
end
2021-07-05 03:14:01 +02:00
require "plugins"
vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs.
2021-07-10 09:19:32 +02:00
require "settings"
2021-07-05 03:14:01 +02:00
require "lv-utils"
2021-07-10 09:19:32 +02:00
-- TODO: these guys need to be in language files
-- require "lsp"
-- if O.lang.emmet.active then
-- require "lsp.emmet-ls"
-- end
-- if O.lang.tailwindcss.active then
2021-07-08 03:57:36 +02:00
-- require "lsp.tailwind