fix(nvim): Wrong plugin

This commit is contained in:
Ahmad Ansori Palembani 2024-04-17 10:52:38 +07:00
parent 7d10d909fa
commit b9c32dfd52
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 4 additions and 2 deletions

View file

@ -2,5 +2,6 @@
"lazy.nvim": { "branch": "main", "commit": "bef521ac89c8d423f9d092e37b58e8af0c099309" }, "lazy.nvim": { "branch": "main", "commit": "bef521ac89c8d423f9d092e37b58e8af0c099309" },
"nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" }, "nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" },
"oil.nvim": { "branch": "master", "commit": "e462a3446505185adf063566f5007771b69027a1" }, "oil.nvim": { "branch": "master", "commit": "e462a3446505185adf063566f5007771b69027a1" },
"vim-commentary": { "branch": "master", "commit": "c4b8f52cbb7142ec239494e5a2c4a512f92c4d07" } "vim-commentary": { "branch": "master", "commit": "c4b8f52cbb7142ec239494e5a2c4a512f92c4d07" },
"vim-startuptime": { "branch": "master", "commit": "ac2cccb5be617672add1f4f3c0a55ce99ba34e01" }
} }

View file

@ -19,8 +19,9 @@ require("lazy").setup({
opts = {}, opts = {},
dependencies = { "nvim-tree/nvim-web-devicons" }, dependencies = { "nvim-tree/nvim-web-devicons" },
}, },
"tpope/vim-commentary", -- shortcut to comment a line
{ {
"tpope/vim-commentary", -- shortcut to comment a line "dstein64/vim-startuptime",
cmd = "StartupTime", -- Note to self: lazy load on command cmd = "StartupTime", -- Note to self: lazy load on command
init = function() init = function()
-- Note to self: init is called during startup. Configuration for vim plugins typically should be set in an init function -- Note to self: init is called during startup. Configuration for vim plugins typically should be set in an init function