mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-01-09 23:13:59 -05:00
15 lines
322 B
Lua
15 lines
322 B
Lua
local async
|
|
async = vim.loop.new_async(vim.schedule_wrap(function()
|
|
require('plugins')
|
|
require('mappings')
|
|
require('autocmd')
|
|
async:close()
|
|
end))
|
|
|
|
local options = require('options')
|
|
|
|
options.disable_default_plugins()
|
|
options.load_options()
|
|
require('colors.' .. vim.g.global_theme).highlight()
|
|
async:send()
|