You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
let b:ale_fixers = {}
|
|
let b:ale_fixers['javascript'] = ['prettier']
|
|
let b:ale_fixers['typescript'] = ['prettier']
|
|
let b:ale_fixers['json'] = ['eslint']
|
|
"let b:ale_javascript_prettier_options = '--no-semi --single-quote --tab-width 2'
|
|
"let b:ale_typescript_prettier_options = '--no-semi --single-quote --tab-width 2'
|
|
let b:ale_fixers['vue'] = ['prettier']
|
|
let b:ale_vue_prettier_options = '--no-semi --single-quote'
|
|
let b:ale_fix_on_save = 1
|
|
let b:ale_javascript_prettier_use_local_config = 1
|
|
let b:ale_typescript_prettier_use_local_config = 1
|
|
let b:ale_fix_on_save = 0
|
|
" config for local eslint
|
|
g:ale_javascript_eslint_use_global = 1
|
|
g:ale_javascript_eslint_executable = 'yarn'
|
|
g:ale_javascript_eslint_options = 'run eslint'
|
|
g:ale_typescript_eslint_use_global = 1
|
|
g:ale_typescript_eslint_executable = 'yarn'
|
|
g:ale_typescript_eslint_options = 'run eslint'
|
|
g:ale_json_eslint_use_global = 1
|
|
g:ale_json_eslint_executable = 'yarn'
|
|
g:ale_json_eslint_options = 'run eslint'
|
|
|
|
let g:jsdoc_formatter = 'tsdoc'
|
|
let g:jsdoc_lehre_path = '/home/schneider/.yarn/bin/lehre'
|
|
|
|
"autocmd bufwritepost *.js silent !standard --fix %
|
|
setlocal wildignore+=node_modules
|
|
|
|
setlocal tabstop=4
|
|
setlocal shiftwidth=4
|
|
|
|
" Create jsdoc with ,h
|
|
nnoremap <leader><C-i> :JsDoc<CR>
|
|
nnoremap <F8> Biawait <ESC>A
|
|
nnoremap <F2> :Prettier<CR>
|
|
|
|
lua <<EOF
|
|
require'nvim-treesitter.configs'.setup {
|
|
textobjects = {
|
|
move = {
|
|
enable = true,
|
|
set_jumps = true, -- whether to set jumps in the jumplist
|
|
goto_next_start = {
|
|
["]m"] = "@function.outer",
|
|
["]]"] = "@class.outer",
|
|
},
|
|
goto_next_end = {
|
|
["]M"] = "@function.outer",
|
|
["]["] = "@class.outer",
|
|
},
|
|
goto_previous_start = {
|
|
["[m"] = "@function.outer",
|
|
["[["] = "@class.outer",
|
|
},
|
|
goto_previous_end = {
|
|
["[M"] = "@function.outer",
|
|
["[]"] = "@class.outer",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
EOF
|