diff options
author | Dery Rahman Ahaddienata <[email protected]> | 2021-07-29 20:41:50 +0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-29 18:11:50 +0430 |
commit | 2e446dc14d49b1da00e6c8c1878873141e139e7e (patch) | |
tree | 8688ef5caba0ce15013dd37aba20f7666f095f77 | |
parent | 3eaf6d461c896ba9fadaf63af0ecbe3769653fa2 (diff) |
Fix autocmd custom_groups not loaded (#1162)
-rw-r--r-- | init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ vim.cmd [[ ]] -- vim.opt.rtp:append() instead of vim.cmd ? require "default-config" +local autocmds = require "core.autocmds" require("settings").load_options() local status_ok, error = pcall(vim.cmd, "luafile ~/.config/lvim/lv-config.lua") if not status_ok then @@ -19,7 +20,7 @@ if not status_ok then print(error) end require("settings").load_commands() -require("core.autocmds").define_augroups(lvim.autocommands) +autocmds.define_augroups(lvim.autocommands) require "keymappings" -- require("lsp").setup_default_bindings() |