From d01ba08eaec1640ac2d038893525b3ba0af25813 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Sun, 3 Oct 2021 16:13:46 +0200 Subject: refactor: auto-generate language configuration (#1584) Refactor the monolithic `lvim.lang` design into a more modular approach. IMPORTANT: run `:LvimUpdate` in order to generate the new ftplugin template files. --- init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index f0edfcc7..c4fa5d35 100644 --- a/init.lua +++ b/init.lua @@ -18,10 +18,9 @@ Log:debug "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) -require("utils").toggle_autoformat() local commands = require "core.commands" commands.load(commands.defaults) -require("lsp").global_setup() - require("keymappings").setup() + +require("lsp").setup() -- cgit v1.2.3