Skip to content

Commit 73580d5

Browse files
committed
docs has been changed in plugins.lua file.
1 parent 48b6a2b commit 73580d5

File tree

1 file changed

+13
-20
lines changed

1 file changed

+13
-20
lines changed

lua/user/plugins.lua

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,22 @@ end
66
vim.opt.rtp:prepend(lazypath)
77

88
require("lazy").setup({
9-
-- Plugin for everforest colorscheme.
10-
'OurCodeBase/everforest-nvim',
11-
-- Plugin for lualine for ui.
12-
'nvim-lualine/lualine.nvim',
13-
-- Plugin for auto pairs.
14-
{
15-
'windwp/nvim-autopairs', event = "InsertEnter",
9+
-- core plugins.
10+
'OurCodeBase/everforest-nvim', -- everforest colors.
11+
'nvim-lualine/lualine.nvim', -- lualine statusline.
12+
{ 'windwp/nvim-autopairs', event = "InsertEnter", -- autopairs.
1613
config = function()
1714
require("nvim-autopairs").setup {}
1815
end
1916
},
20-
-- Plugin for nvim-completion.
21-
{ 'hrsh7th/nvim-cmp', event = "InsertEnter" },
22-
-- Plugin for buffer completion.
23-
{ 'hrsh7th/cmp-buffer', event = "InsertEnter" },
24-
-- Plugin for path completion.
25-
{ 'hrsh7th/cmp-path', event = "InsertEnter" },
26-
-- Plugin for cmdline completion.
27-
{ 'hrsh7th/cmp-cmdline', event = "VeryLazy" },
28-
-- Plugin for snippets.
29-
{ 'L3MON4D3/LuaSnip', event = "VeryLazy" },
30-
{ 'saadparwaiz1/cmp_luasnip', event = "VeryLazy" },
31-
-- Plugin for snippet collection.
32-
'OurCodeBase/friendly-snippets',
17+
-- completion.
18+
{ 'hrsh7th/nvim-cmp', event = "InsertEnter" }, -- the completion engine.
19+
{ 'hrsh7th/cmp-buffer', event = "InsertEnter" }, -- buffer completion.
20+
{ 'hrsh7th/cmp-path', event = "InsertEnter" }, -- path completion.
21+
{ 'hrsh7th/cmp-cmdline', event = "VeryLazy" }, -- cmdline completion.
22+
-- snippets.
23+
{ 'L3MON4D3/LuaSnip', event = "VeryLazy" }, -- snippet engine.
24+
{ 'saadparwaiz1/cmp_luasnip', event = "VeryLazy" }, -- snippet connector.
25+
'OurCodeBase/friendly-snippets', -- snippet collection.
3326
})
3427

0 commit comments

Comments
 (0)