style(init): Modularize entire init.lua

Now each plugin is in it's own seperate file that returns the plugin and
it's configs. This makes it simpler for me apply lazy loading to this
config.

Settings, Keymaps, Yank-highlight are inside kickstart directory within
their seperate files.
This commit is contained in:
rajvatsal 2024-01-08 18:09:07 +05:30
parent 6215c8b7ba
commit c0e3bb9036
15 changed files with 585 additions and 587 deletions

View file

@ -0,0 +1,8 @@
return {
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
opts = {},
}