From eb0c57bde044a14c89b4fadaaef8cfbf20581a3a Mon Sep 17 00:00:00 2001 From: jdhao Date: Wed, 11 Oct 2023 20:35:12 +0200 Subject: [PATCH] update to nvim 0.9.4 --- core/plugins.vim | 2 +- init.lua | 2 +- lua/{plugins.lua => plugin_specs.lua} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename lua/{plugins.lua => plugin_specs.lua} (100%) diff --git a/core/plugins.vim b/core/plugins.vim index b3bc2373..83b6a527 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -1,7 +1,7 @@ scriptencoding utf-8 " Plugin specification and lua stuff -lua require('plugins') +lua require('plugin_specs') " Use short names for common plugin manager commands to simplify typing. " To use these shortcuts: first activate command line with `:`, then input the diff --git a/init.lua b/init.lua index df7dd1e0..f5054712 100644 --- a/init.lua +++ b/init.lua @@ -14,7 +14,7 @@ vim.loader.enable() local version = vim.version -- check if we have the latest stable version of nvim -local expected_ver = "0.9.2" +local expected_ver = "0.9.4" local ev = version.parse(expected_ver) local actual_ver = version() diff --git a/lua/plugins.lua b/lua/plugin_specs.lua similarity index 100% rename from lua/plugins.lua rename to lua/plugin_specs.lua