ultisnips

This commit is contained in:
ManjaroOne666 2018-02-11 22:27:09 +00:00
parent eb9860ae35
commit ec16db5153
2 changed files with 24 additions and 0 deletions

View File

@ -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
View File

@ -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>'