Vue support fixed

This commit is contained in:
Maurice Grönwoldt 2025-09-17 17:53:46 +02:00
commit 70f5f3c859
No known key found for this signature in database
GPG key ID: FBB005FE74FEF996
7 changed files with 62 additions and 26 deletions

13
lua/plugins/kube.lua Normal file
View file

@ -0,0 +1,13 @@
return {
{
"ramilito/kubectl.nvim",
-- use a release tag to download pre-built binaries
version = "2.*",
-- AND/OR build from source, requires nightly: https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust
-- build = 'cargo build --release',
dependencies = "saghen/blink.download",
config = function()
require("kubectl").setup()
end,
},
}