2024-05-08 16:23:29 +02:00
|
|
|
""""""""""""""""""""""""""""""""" JEDI
|
|
|
|
|
|
|
|
let g:jedi#auto_initialization = 1
|
|
|
|
let g:jedi#use_tabs_not_buffers = 1
|
|
|
|
let g:jedi#environment_path = "venv"
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""""" ALE
|
|
|
|
|
2024-11-05 16:01:52 +01:00
|
|
|
"let g:ale_python_pylint_executable = '/home/jrkb/git/pointer/neomatter/font3d/abc3d/venv/bin/pylint'
|
|
|
|
"let g:ale_python_executable='/home/jrkb/git/pointer/neomatter/font3d/abc3d/venv/bin/python'
|
2024-05-21 18:00:49 +02:00
|
|
|
"let g:ale_python_pylint_use_global=1
|
|
|
|
"let g:ale_use_global_executables=1
|
|
|
|
"let g:ale_python_auto_pipenv=1
|
|
|
|
"let g:ale_python_auto_virtualenv=1
|
|
|
|
"let g:ale_virtualenv_dir_names = ['venv']
|
|
|
|
|
2024-11-05 16:01:52 +01:00
|
|
|
"let g:ale_linters = { 'javascript': ['eslint', 'tsserver'], 'python': ['jedils', 'pylint', 'flake8'], 'cpp': ['cc', 'clangcheck', 'clangd', 'clangtidy', 'clazy', 'cppcheck', 'cpplint', 'cquery', 'cspell', 'flawfinder'], 'php': ['php_cs_fixer'] }
|
|
|
|
"let g:ale_fixers = { '*': ['remove_trailing_lines', 'trim_whitespace'], 'python': ['autopep8'], 'cpp': ['uncrustify'], 'javascript': js_fixers, 'css': ['prettier'], 'json': ['prettier'], 'php': ['php_cs_fixer'] }
|
|
|
|
|
2024-05-08 16:23:29 +02:00
|
|
|
let g:ale_pattern_options = {'\.py$': {'ale_enabled': 0}}
|