From 62cd8cbda45cb605af6e1b357ea736f2f0ff33cb Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Mon, 22 Jan 2024 00:44:53 +0200 Subject: [PATCH] feat(nvim): use plugin versions, where available --- config/nvim/lua/config/lazy.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nvim/lua/config/lazy.lua b/config/nvim/lua/config/lazy.lua index 8bd9ccb..98cc723 100644 --- a/config/nvim/lua/config/lazy.lua +++ b/config/nvim/lua/config/lazy.lua @@ -40,8 +40,8 @@ require("lazy").setup({ lazy = false, -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, -- have outdated releases, which may break your Neovim install. - version = false, -- always use the latest git commit - -- version = "*", -- try installing the latest stable version for plugins that support semver + -- version = false, -- always use the latest git commit + version = "*", -- try installing the latest stable version for plugins that support semver }, install = { colorscheme = { "tokyonight" } }, checker = { enabled = true }, -- automatically check for plugin updates