feat(vatsal): Create new config vatsal

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
This commit is contained in:
rajvatsal 2024-01-10 15:20:47 +05:30
parent 7a5a4b0c72
commit 47b7622fe7
27 changed files with 1233 additions and 11 deletions

View file

@ -7,7 +7,9 @@
-- kickstart.nvim and not kitchen-sink.nvim ;)
return {
-- NOTE: Yes, you can install new plugins here!
'mfussenegger/nvim-dap',
-- NOTE: And you can specify dependencies as well
dependencies = {
-- Creates a beautiful debugger UI
'rcarriga/nvim-dap-ui',
@ -19,7 +21,6 @@ return {
-- Add your own debuggers here
'leoluz/nvim-dap-go',
},
event = { 'BufReadPre', 'BufNewFile' },
config = function()
local dap = require 'dap'
local dapui = require 'dapui'