neovim configuration using rocks.nvim plugin manager

snippets: add rust snippets

Signed-off-by: Seongmin Lee <git@boltless.me>

boltless.me 997d42b1 d4efea4f

verified
Changed files
+10
lua
snippets
+10
lua/snippets/rust.lua
··· 13 13 s("cl", { 14 14 t"|", i(1), t"|", t" {", i(2), t"}", 15 15 }), 16 + s("fn", fmt([[ 17 + fn {}({}){} { 18 + {}{} 19 + } 20 + ]], { i(1), i(2), i(3), t("\t"), i(4) })), 21 + s("afn", fmt([[ 22 + async fn {}({}){} { 23 + {}{} 24 + } 25 + ]], { i(1), i(2), i(3), t("\t"), i(4) })), 16 26 })