kickstart folder contains the original init.lua file. Current init.lua gets it's config from lua.vatsal.plugins which what I created to modularize the code and enable lazy loading. Init to lua now loads all the plugins from vatsal.plugins
27 lines
682 B
Lua
27 lines
682 B
Lua
return {
|
|
--Gruvbox colorscheme
|
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ..., lazy = true },
|
|
|
|
--tokyonight colorscheme
|
|
{ "folke/tokyonight.nvim", priority = 1000, lazy = true },
|
|
|
|
-- lunar-vim colorschemes
|
|
{ "lunarvim/colorschemes", priority = 1000, lazy = true },
|
|
|
|
-- kanagawa
|
|
{ "rebelot/kanagawa.nvim", priority = 1000, lazy = true },
|
|
|
|
-- latte, frappe, macchiato, mocha
|
|
{ "catppuccin/catppuccin", priority = 1000, lazy = true },
|
|
|
|
-- Theme inspired by Atom
|
|
{ 'navarasu/onedark.nvim', priority = 1000, lazy = true },
|
|
|
|
--Rosepine (Primeagen)
|
|
{
|
|
'rose-pine/neovim',
|
|
name = 'rose-pine',
|
|
priority = 1000,
|
|
lazy = false
|
|
}
|
|
}
|