Reviewed-on: #1 Co-authored-by: Tomas Mirchev <contact@tomastm.com> Co-committed-by: Tomas Mirchev <contact@tomastm.com>
11 lines
214 B
Lua
11 lines
214 B
Lua
if #vim.api.nvim_list_uis() == 0 then
|
|
require('setup')
|
|
return
|
|
end
|
|
|
|
vim.env.PATH = vim.fn.stdpath('data') .. '/mason/bin:' .. vim.env.PATH
|
|
|
|
require('core.options')
|
|
require('core.keymaps')
|
|
require('core.events')
|