ultisnips
This commit is contained in:
parent
eb9860ae35
commit
ec16db5153
|
@ -0,0 +1,23 @@
|
|||
snippet vue "Default template"
|
||||
<template>
|
||||
$0
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
},
|
||||
|
||||
data () {
|
||||
return {
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
endsnippet
|
1
vimrc
1
vimrc
|
@ -433,6 +433,7 @@ endfunction
|
|||
"nmap <silent> <C-j> <Plug>(ale_next_wrap)
|
||||
|
||||
" ultisnips
|
||||
let g:UltiSnipsSnippetsDir="~/.vim/UltiSnips"
|
||||
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
|
||||
let g:UltiSnipsExpandTrigger='<c-j>'
|
||||
let g:UltiSnipsJumpForwardTrigger='<c-b>'
|
||||
|
|
Loading…
Reference in New Issue