aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2023-06-03 21:37:14 +0200
committerjdhao <jdhao@hotmail.com>2023-06-03 21:37:14 +0200
commit6c873a32da5410b6accbe8da476e334e2918901f (patch)
treec68e7f8ce279552eeb73e1d1b826d917960a091e
parent9ca65fd94207bfa87219710a9c9cd094e682abbc (diff)
update to nvim 0.9.1
-rw-r--r--README.md6
-rw-r--r--init.lua2
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 9bf11af..1ccc387 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
<img alt="Latest release" src="https://img.shields.io/github/v/release/jdhao/nvim-config" />
</a>
<a href="https://github.com/neovim/neovim/releases/tag/stable">
- <img src="https://img.shields.io/badge/Neovim-0.9.0-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=green" alt="Neovim minimum version"/>
+ <img src="https://img.shields.io/badge/Neovim-0.9.1-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=green" alt="Neovim minimum version"/>
</a>
<a href="https://github.com/jdhao/nvim-config/search?l=vim-script">
<img src="https://img.shields.io/github/languages/top/jdhao/nvim-config" alt="Top languages"/>
@@ -21,8 +21,8 @@
<a href="https://github.com/jdhao/nvim-config/graphs/commit-activity">
<img src="https://img.shields.io/github/commit-activity/m/jdhao/nvim-config?style=flat-square" />
</a>
- <a href="https://github.com/jdhao/nvim-config/releases/tag/v0.9.0">
- <img src="https://img.shields.io/github/commits-since/jdhao/nvim-config/v0.9.0?style=flat-square" />
+ <a href="https://github.com/jdhao/nvim-config/releases/tag/v0.9.1">
+ <img src="https://img.shields.io/github/commits-since/jdhao/nvim-config/v0.9.1?style=flat-square" />
</a>
<a href="https://github.com/jdhao/nvim-config/graphs/contributors">
<img src="https://img.shields.io/github/contributors/jdhao/nvim-config?style=flat-square" />
diff --git a/init.lua b/init.lua
index 4ae69aa..f294ab2 100644
--- a/init.lua
+++ b/init.lua
@@ -15,7 +15,7 @@ local api = vim.api
local version = vim.version
-- check if we have the latest stable version of nvim
-local expected_ver = "0.9.0"
+local expected_ver = "0.9.1"
local ev = version.parse(expected_ver)
local actual_ver = version()