diff options
author | Chris <[email protected]> | 2021-07-29 21:40:16 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-29 21:40:16 -0400 |
commit | 176106f2234ef7807918b0c131bbd70df3e7c562 (patch) | |
tree | 42d135fc4a0d0a9e35ab7b8b12d993d271879841 /init.lua | |
parent | e6aceea12e2a685f458b0a351d4191fdb0ad21ef (diff) | |
parent | 2e446dc14d49b1da00e6c8c1878873141e139e7e (diff) |
Merge branch 'rolling' 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
@@ -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() |