aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2023-10-11 20:35:12 +0200
committerjdhao <jdhao@hotmail.com>2023-10-11 20:35:50 +0200
commit54ca6d419198fcca6d7b8f6f81b7fa6d32e2e45c (patch)
tree48b439e22299087e3afa5f2730e678b9faa029b3
parent97af59e670be09dfb74d136af94be8ab3b98c25a (diff)
update to nvim 0.9.4
-rw-r--r--core/plugins.vim2
-rw-r--r--init.lua2
-rw-r--r--lua/plugin_specs.lua (renamed from lua/plugins.lua)0
3 files changed, 2 insertions, 2 deletions
diff --git a/core/plugins.vim b/core/plugins.vim
index b3bc237..83b6a52 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 df7dd1e..f505471 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
index 1edbe04..1edbe04 100644
--- a/lua/plugins.lua
+++ b/lua/plugin_specs.lua