mayorbyrne / dart-checkForSdkUpdates.nvim

A neovim version of dartcode's checkForSdkUpdates option

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dart-checkForSdkUpdates.nvim


Purpose

My VSCode friends using dart were being alerted of new releases of the sdk, thanks to the https://dartcode.org/docs/settings/#dartcheckforsdkupdates

I couldn't find anything in vim/nvim that would notify me about new Dart SDK releases, so I decided to create a plugin that would do just that. This is my first plugin, so please be gentle.

⬇️ Installation

Install via package manager and run when opening a dart file

Lazy

{
  "mayorbyrne/dart-checkForSdkUpdates.nvim",
  ft = "dart",
  config = function()
    require("dart-checkForSdkUpdates").setup()
  end,
}

About

A neovim version of dartcode's checkForSdkUpdates option


Languages

Language:Lua 100.0%