style: fix formatting
This commit is contained in:
parent
6ea270f89c
commit
61a96c3c3c
16
init.lua
16
init.lua
@ -7,21 +7,23 @@ if not vim.loop.fs_stat(lazypath) then
|
|||||||
'--filter=blob:none',
|
'--filter=blob:none',
|
||||||
'--single-branch',
|
'--single-branch',
|
||||||
'https://github.com/folke/lazy.nvim.git',
|
'https://github.com/folke/lazy.nvim.git',
|
||||||
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 'noice'
|
require 'feline'
|
||||||
|
require 'noice'
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
require 'config.settings'
|
require 'config.settings'
|
||||||
require 'config.lazy'
|
require 'config.lazy'
|
||||||
vim.cmd 'colorscheme neogruber'
|
|
||||||
|
Loading…
Reference in New Issue
Block a user