mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-12 09:08:21 -05:00
a747daeacd
Also fix luasnip mapping for nvim-cmp
15 lines
337 B
Lua
15 lines
337 B
Lua
local async
|
|
async = vim.loop.new_async(vim.schedule_wrap(function()
|
|
require('plugins')
|
|
require('mappings')
|
|
require('events').load_autocmds()
|
|
async:close()
|
|
end))
|
|
|
|
local options = require('options')
|
|
|
|
options.disable_default_plugins()
|
|
options.load_options()
|
|
require('colors.' .. vim.g.global_theme).highlight()
|
|
async:send()
|