aboutsummaryrefslogtreecommitdiff
path: root/lua/lazy-plugins.lua
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-02-27 19:13:41 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2024-02-27 19:13:41 +0100
commit54df2892e1a1095ad6c30c5cf749a54bc669f1cc (patch)
tree937bca5e870d8dbc66f1c84ca9cc8c0213b87c6a /lua/lazy-plugins.lua
parentd17289318a358cfebf62f6c6a170b9833f190f30 (diff)
parent18b919c61eec1f6ffe91ad21c14e53ce27048b0a (diff)
Merge 'upstream/master' add plugin specs docstring, remove lazy.nvim configuration (empty) table
Diffstat (limited to 'lua/lazy-plugins.lua')
-rw-r--r--lua/lazy-plugins.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua
index e2686fd..f68fecb 100644
--- a/lua/lazy-plugins.lua
+++ b/lua/lazy-plugins.lua
@@ -9,7 +9,9 @@
-- :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
@@ -67,6 +69,6 @@ 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' },
-}, {})
+}
-- vim: ts=2 sts=2 sw=2 et