From 61a96c3c3c44f3712c9729876b7f1df68d249742 Mon Sep 17 00:00:00 2001 From: fiplox Date: Sun, 9 Apr 2023 23:45:24 +0200 Subject: [PATCH] style: fix formatting --- init.lua | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/init.lua b/init.lua index 61265a8..6cb263f 100644 --- a/init.lua +++ b/init.lua @@ -7,21 +7,23 @@ if not vim.loop.fs_stat(lazypath) then '--filter=blob:none', '--single-branch', 'https://github.com/folke/lazy.nvim.git', - lazypath, + 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' - require 'nvim-treesitter' - require 'noice' + require 'config.mappings' + require 'config.autocmd' + vim.cmd 'colorscheme neogruber' + require 'nvim-treesitter' + require 'feline' + require 'noice' end, }) require 'config.settings' require 'config.lazy' -vim.cmd 'colorscheme neogruber'