dotfiles/.config/nvim/snippets/projects/nvim.json
2024-01-06 20:30:15 +01:00

33 lines
774 B
JSON

{
"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"
}
}