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, lazypath,
} }
end end
vim.opt.runtimepath:prepend(lazypath) vim.opt.runtimepath:prepend(lazypath)
vim.api.nvim_create_autocmd('User', { vim.api.nvim_create_autocmd('User', {
pattern = 'LazyVimStarted', pattern = 'LazyVimStarted',
callback = function() callback = function()
require 'config.mappings' require 'config.mappings'
require 'config.autocmd' require 'config.autocmd'
require 'feline' vim.cmd 'colorscheme neogruber'
require 'nvim-treesitter' require 'nvim-treesitter'
require 'feline'
require 'noice' require 'noice'
end, end,
}) })
require 'config.settings' require 'config.settings'
require 'config.lazy' require 'config.lazy'
vim.cmd 'colorscheme neogruber'