feat(neovim): Custom snippet configuration for Docker & Rust

- VS code format snippets for Docker & Rust
- Blink.nvim configured to pick custom snippets automatically
This commit is contained in:
Pratik Tripathy
2025-08-04 11:11:10 +05:30
parent 355bbfd2e8
commit 11dfad34f7
4 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "custom-snippets",
"contributes": {
"snippets": [
{
"language": [
"dockerfile"
],
"path": "./dockerfile.json"
},
{
"language": [
"rust"
],
"path": "./rust.json"
}
]
}
}