aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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