feat: bump min neovim version
This commit is contained in:
parent
58bafac26e
commit
e059a4fa42
3 changed files with 4 additions and 5 deletions
4
init.lua
4
init.lua
|
@ -1,5 +1,5 @@
|
|||
if vim.fn.has('nvim-0.9') == 0 then
|
||||
error('Need Neovim v0.9+ in order to run Cosmic!')
|
||||
if vim.fn.has('nvim-0.10') == 0 then
|
||||
error('Need Neovim v0.10+ in order to run Cosmic!')
|
||||
end
|
||||
|
||||
local ok, err = pcall(require, 'cosmic')
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
local utils = require('cosmic.utils')
|
||||
local lsp_utils = require('cosmic.utils.lsp')
|
||||
local user_config = require('cosmic.core.user')
|
||||
local Logger = require('cosmic.utils.logger')
|
||||
local M = {}
|
||||
|
||||
local function toggle_inlay_hints(bufnr)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<h1 align="center">💫 CosmicNvim</h1>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Neovim Minimum Version" src="https://img.shields.io/badge/Neovim-0.9.0+-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=white)](https://github.com/neovim/neovim">
|
||||
<img alt="Neovim Minimum Version" src="https://img.shields.io/badge/Neovim-0.10.0+-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=white)](https://github.com/neovim/neovim">
|
||||
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/CosmicNvim/CosmicNvim?style=flat-square&logo=Github">
|
||||
<a href="https://discord.gg/EwdrKzVbvJ">
|
||||
<img alt="Discord" src="https://img.shields.io/discord/901609359291854899?style=flat-square&logo=Discord">
|
||||
|
@ -56,7 +56,7 @@ experience with any LSP supported language._
|
|||
|
||||
#### Prerequisites
|
||||
|
||||
- Neovim (+0.9.0)
|
||||
- Neovim (+0.10.0)
|
||||
- [Node.js](https://nodejs.org/en/)
|
||||
- [prettierd](https://github.com/fsouza/prettierd) (for prettier formatting w/null_ls, optional)
|
||||
- [eslint_d](https://www.npmjs.com/package/eslint_d) (for eslint w/null_ls, optional)
|
||||
|
|
Loading…
Add table
Reference in a new issue