Compare commits

..

No commits in common. "8b7c15df504113771d9cc6c9281e5e08f5f4529e" and "0a09d67979bbda9e91d78b94ad10cb4dc444a4fd" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View file

@ -18,6 +18,6 @@ let g:coc_user_config['prettier'] = {
\ 'bracketSpacing': v:true, \ 'bracketSpacing': v:true,
\ 'jsxBracketSameLine': v:true, \ 'jsxBracketSameLine': v:true,
\ 'arrowParens': 'always', \ 'arrowParens': 'always',
\ 'proseWrap': 'preserve',
\ 'disableSuccessMessage': v:true, \ 'disableSuccessMessage': v:true,
\ 'proseWrap': 'always',
\ } \ }

View file

@ -119,4 +119,6 @@ if command_exists dragon-drag-and-drop && ! command_exists dragon; then
alias dragon='dragon-drag-and-drop' alias dragon='dragon-drag-and-drop'
fi fi
alias gtime="command time -v" if gnu_time_path="$(command_locate time)" && [[ -n "$gnu_time_path" ]]; then
alias gtime="${(q)gnu_time_path} -v"
fi