style: fix formatting

This commit is contained in:
fiplox 2023-04-09 23:45:24 +02:00
parent 6ea270f89c
commit 61a96c3c3c
1 changed files with 9 additions and 7 deletions

View File

@ -10,18 +10,20 @@ if not vim.loop.fs_stat(lazypath) then
lazypath,
}
end
vim.opt.runtimepath:prepend(lazypath)
vim.api.nvim_create_autocmd('User', {
pattern = 'LazyVimStarted',
callback = function()
require 'config.mappings'
require 'config.autocmd'
require 'feline'
vim.cmd 'colorscheme neogruber'
require 'nvim-treesitter'
require 'feline'
require 'noice'
end,
})
require 'config.settings'
require 'config.lazy'
vim.cmd 'colorscheme neogruber'