39 lines
1.1 KiB
VimL
39 lines
1.1 KiB
VimL
function! paiyou#before() abort
|
|
" typescript
|
|
let g:neoformat_typescriptreact_prettier = {
|
|
\ 'exe': 'prettier',
|
|
\ 'args': ['--stdin', '--stdin-filepath', '"%:p"', '--parser', 'typescript'],
|
|
\ 'stdin': 1
|
|
\ }
|
|
let g:neoformat_enabled_typescriptreact = ['tsfmt', 'prettier']
|
|
let g:neoformat_enabled_ruby = ['rubocop']
|
|
endfunction
|
|
|
|
function! paiyou#after() abort
|
|
let g:ale_fixers = {
|
|
\ 'javascript': ['eslint'],
|
|
\ 'ruby': ['rubocop'],
|
|
\}
|
|
let g:ale_fix_on_save = 1
|
|
let g:ctrlp_max_files=0
|
|
endfunction
|
|
|
|
" load customized settings
|
|
|
|
let vimsettings = '~/.yadr/SpaceVim.d/autoload/settings'
|
|
let uname = system("uname -s")
|
|
|
|
for fpath in split(globpath(vimsettings, '*.vim'), '\n')
|
|
if (fpath == expand(vimsettings) . "/yadr-keymap-mac.vim") && uname[:4] ==? "linux"
|
|
continue " skip mac mappings for linux
|
|
endif
|
|
|
|
if (fpath == expand(vimsettings) . "/yadr-keymap-linux.vim") && uname[:4] !=? "linux"
|
|
continue " skip linux mappings for mac
|
|
endif
|
|
|
|
exe 'source' fpath
|
|
endfor
|
|
let g:smoothie_enabled = 0
|
|
let ruby_no_expensive=1
|