feat(nvim): add snippets for neovim dev

This commit is contained in:
Sergio Laín 2024-01-06 20:30:15 +01:00
parent 3b663d09c7
commit 9500e72a26
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 37 additions and 0 deletions

View file

@ -38,6 +38,10 @@
{
"language": "lua",
"path": "./languages/lua.json"
},
{
"language": "lua",
"path": "./projects/nvim.json"
}
]
}

View file

@ -0,0 +1,33 @@
{
"autocmd": {
"body": [
"vim.api.nvim_create_autocmd(\"${1:event}\", {",
"\tcallback = function()",
"\t\t$0",
"\tend,",
"})"
],
"prefix": "autocmd"
},
"autocmd (Filetype)": {
"body": [
"vim.api.nvim_create_autocmd(\"FileType\", {",
"\tpattern = \"${1:ft}\",",
"\tcallback = function()",
"\t\t$0",
"\tend,",
"})"
],
"filetype": "lua",
"prefix": "autocmd (Filetype)"
},
"check if file exists": {
"body": "local fileExists = vim.loop.fs_stat(\"${1:filepath}\") ~= nil",
"prefix": "check if file exists"
},
"keymap": {
"body": "keymap(\"n\", \"${1:lhs}\", \"${2:rhs}\", { desc = \"${3:description}\" })",
"filetype": "lua",
"prefix": "keymap"
}
}