dotfiles/nvim/lua/main.lua
2024-06-13 21:48:16 +02:00

19 lines
348 B
Lua

-- Setup default options
require 'config.options'
require 'config.keymaps'
require 'config.autocmd'
-- Are we inside Neovide?
if vim.g.neovide then
require 'config.neovide'
end
-- Try load package manager
local ok, err = pcall(require, 'config.manager')
if not ok then
vim.schedule(function()
vim.notify(err, vim.log.levels.ERROR)
end)
end