aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorbrxxlstxrs <92815065+brxxlstxrs@users.noreply.github.com>2024-02-27 21:08:37 +0300
committerGitHub <noreply@github.com>2024-02-27 13:08:37 -0500
commit18b919c61eec1f6ffe91ad21c14e53ce27048b0a (patch)
tree72e5be8515fa4745c221794a2de9aedc2ee6fdc0 /init.lua
parentaf4fd2355f211d4d19ec08ea6d57cbea483e2ee7 (diff)
add plugin specs docstring, remove lazy.nvim configuration (empty) table (#652)
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 1e5691a..0506b3e 100644
--- a/init.lua
+++ b/init.lua
@@ -218,7 +218,9 @@ vim.opt.rtp:prepend(lazypath)
-- :Lazy update
--
-- NOTE: Here is where you install your plugins.
-require('lazy').setup({
+require('lazy').setup {
+
+ -- [[ Plugin Specs list ]]
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
@@ -808,7 +810,7 @@ require('lazy').setup({
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins
-- { import = 'custom.plugins' },
-}, {})
+}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et