馃 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 32 lines 563 B view raw
1{ 2 "name": "ivy-snippets", 3 "engines": { 4 "vscode": "^1.11.0" 5 }, 6 "contributes": { 7 "snippets": [ 8 { 9 "language": "nix", 10 "path": "./snippets/nix.json" 11 }, 12 { 13 "language": [ 14 "html", 15 "jade", 16 "pug", 17 "eruby", 18 "javascriptreact", 19 "htmldjango", 20 "astro", 21 "blade", 22 "gotexttmpl" 23 ], 24 "path": "./snippets/html.json" 25 }, 26 { 27 "language": "typst", 28 "path": "./snippets/typst.json" 29 } 30 ] 31 } 32}