Disabling ALE, working with coc-pyright.

This commit is contained in:
Emiliano Vavassori 2023-12-31 23:02:03 +01:00
parent 0ff9f19a6c
commit c954f4c4f1

9
vimrc
View File

@ -36,7 +36,6 @@ Plug 'fannheyward/coc-pyright', { 'do': 'yarn install --frozen-lockfile' }
" Ansible " Ansible
Plug 'pearofducks/ansible-vim' " syntax highlight Plug 'pearofducks/ansible-vim' " syntax highlight
Plug 'dense-analysis/ale' " ALE - linting, fixing and completion
Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'} Plug 'yaegassy/coc-ansible', {'do': 'yarn install --frozen-lockfile'}
" Rust " Rust
@ -104,10 +103,10 @@ let g:airline_powerline_fonts = 1
let g:airline_theme='dark' let g:airline_theme='dark'
" ALE configurations " ALE configurations
nmap <silent> <C-e> <Plug>(ale_next_wrap) #nmap <silent> <C-e> <Plug>(ale_next_wrap)
let g:ale_sign_error = '⬥' #let g:ale_sign_error = '⬥'
let g:ale_sign_warning = '⬦' #let g:ale_sign_warning = '⬦'
let g:ale_yaml_yamllint_options='-d "{extends: relaxed, rules: {line-length: disable}}"' #let g:ale_yaml_yamllint_options='-d "{extends: relaxed, rules: {line-length: disable}}"'
" Configurazioni per ansible-vim " Configurazioni per ansible-vim
let g:ansible_unindent_after_newline = 1 let g:ansible_unindent_after_newline = 1