Added eslint config
parent
d8be2b09ac
commit
4dcab39d5b
|
@ -1,15 +1,16 @@
|
|||
{
|
||||
"coc.preferences.formatOnSaveFiletypes": [
|
||||
"cpp",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"json",
|
||||
"markdown",
|
||||
"python",
|
||||
"rust",
|
||||
"toml",
|
||||
"yaml"
|
||||
"cpp",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"json",
|
||||
"markdown",
|
||||
"python",
|
||||
"rust",
|
||||
"toml",
|
||||
"yaml"
|
||||
],
|
||||
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd"
|
||||
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd",
|
||||
"eslint.format.enable": true
|
||||
}
|
||||
|
|
|
@ -159,6 +159,7 @@ set updatetime=300
|
|||
let g:coc_global_extensions = [
|
||||
\ 'coc-clangd',
|
||||
\ 'coc-cmake',
|
||||
\ 'coc-eslint',
|
||||
\ 'coc-html',
|
||||
\ 'coc-json',
|
||||
\ 'coc-python',
|
||||
|
@ -174,6 +175,7 @@ nnoremap <silent> K :call CocAction('doHover')<CR>
|
|||
|
||||
nmap <silent> gd <Plug>(coc-definition)
|
||||
nmap <silent> gr <Plug>(coc-references)
|
||||
nmap <silent> ga <Plug>(coc-codeaction)
|
||||
nmap <silent> <leader>rn <Plug>(coc-rename)
|
||||
|
||||
" use <tab> for trigger completion and navigate to the next complete item
|
||||
|
|
Loading…
Reference in New Issue