💡 Add better plugin comments

- Add an identifying comment for each plugin
This commit is contained in:
2024-07-21 11:57:56 -04:00
parent 2a510fd163
commit 65bbf7fd61
10 changed files with 154 additions and 85 deletions
+23 -13
View File
@@ -3,12 +3,22 @@
-- -----------------------------------------------------------------------------
return {
{ import = "lazyvim.plugins.extras.editor.aerial" },
{ import = "lazyvim.plugins.extras.editor.dial" },
{ import = "lazyvim.plugins.extras.editor.illuminate" },
{ import = "lazyvim.plugins.extras.editor.outline" },
{ import = "lazyvim.plugins.extras.editor.telescope" },
{
{ -- Aerial
import = "lazyvim.plugins.extras.editor.aerial",
},
{ -- Dial
import = "lazyvim.plugins.extras.editor.dial",
},
{ -- Illuminate
import = "lazyvim.plugins.extras.editor.illuminate",
},
{ -- Outline
import = "lazyvim.plugins.extras.editor.outline",
},
{ -- Telescope
import = "lazyvim.plugins.extras.editor.telescope",
},
{ -- Which-Key
"folke/which-key.nvim",
opts = {
preset = "modern",
@@ -19,7 +29,7 @@ return {
},
},
},
{
{ -- CodeWindow
"gorbit99/codewindow.nvim",
event = "InsertEnter",
config = function()
@@ -49,12 +59,12 @@ return {
require("codewindow").apply_default_keybinds()
end,
},
{
{ -- Persistence
"folke/persistence.nvim",
event = "BufReadPre",
opts = {},
},
{
{ -- Remote-nvim
"amitds1997/remote-nvim.nvim",
event = "VeryLazy",
version = "*", -- Pin to GitHub releases
@@ -65,7 +75,7 @@ return {
},
config = true,
},
{
{ -- DeadColumn
"Bekaboo/deadcolumn.nvim",
event = "VeryLazy",
config = function()
@@ -94,16 +104,16 @@ return {
vim.cmd(":set colorcolumn=120")
end,
},
{
{ -- Precognition
"tris203/precognition.nvim",
event = "VeryLazy",
},
{
{ -- Zen Mode
"folke/zen-mode.nvim",
event = "VeryLazy",
opts = {},
},
{
{ -- SmoothCursor
"gen740/SmoothCursor.nvim",
event = "InsertEnter",
lazy = true,