Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 791 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 791 Bytes

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,
}