Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to nvim 0.9.4 #250

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/plugins.vim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
File renamed without changes.