First try custom emmet snippets
This commit is contained in:
parent
512c187ff6
commit
07cd0f16ab
1 changed files with 25 additions and 0 deletions
25
dotfiles/.vim/customizations/vim-emmet-mysnippets.json
Normal file
25
dotfiles/.vim/customizations/vim-emmet-mysnippets.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"variables": {
|
||||
"pyversion": "python3",
|
||||
"charset": "utf8",
|
||||
"indentation": " ",
|
||||
"newline": "\n"
|
||||
},
|
||||
|
||||
"python": {
|
||||
"filters": "python",
|
||||
"profile": "python",
|
||||
"snippets": {
|
||||
"shebang" : "#!/usr/bin/env ${pyversion}${newline}# coding: ${charset}${newline}${newline}",
|
||||
"openfile" : "",
|
||||
"savefile" : "",
|
||||
"basepath" : ""
|
||||
},
|
||||
"abbreviations": {
|
||||
"osfile": "openfile+savefile"
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue