"""" PLUGINS CONFIGURATION " ALE configuration " let g:ale_python_auto_poetry = 1 let g:ale_set_balloons = 1 " enable tooltips let g:ale_fixers = { \ '*': ['remove_trailing_lines', 'trim_whitespace'], \ 'bash': ['shfmt'], \ 'sh': ['shfmt'], \ 'json': ['prettier'], \ 'c': ['clang-format'], \ 'cpp': ['clang-format'], \ 'css': ['prettier'], \ 'html': ['prettier'], \ 'markdown': ['prettier'], \ 'terraform': ['terraform'], \ 'java': ['eclipselsp'], \ 'yaml': ['prettier'], \ 'python': ['black', 'isort'], \ 'go': ['gofmt', "goimports"], \ 'rust': ['rustfmt'], \ 'sql': ['pgformatter'], \ "javascript": ["prettier", "eslint"], \ "vue": ["prettier", "eslint"] \} let g:ale_fixers_aliases = {'vue': ['vue', 'javascript']} let g:ale_python_bandit_options = "-c banditrc" let g:ale_python_pylint_options = "-j0 --disable=W0511" let g:ale_python_mypy_options = "--ignore-missing-imports" " let g:ale_cpp_clang_options = '-std=c++17 -Wall -Wpedantic' " let g:ale_cpp_gcc_options = '-std=c++17 -Wall -Wpedantic' let g:ale_rust_rustfmt_options = '--edition=2018' let g:ale_linters = { \ 'bash': ['bash-language-server', 'bashlint', "shellcheck"], \ 'dockerfile': ["hadolint"], \ 'zsh': ['bashlint', "shellcheck"], \ 'cpp': ['clangd'], \ 'python': ['pylsp', 'pylint', 'bandit', "mypy"], \ 'go': ['gopls', 'gobuild'], \ 'rust': ['analyzer', 'cargo', 'rls'], \ 'yaml': ['yamllint'], \ 'javascript': ["yarn lint", "eslint", "vls"] \} let g:ale_linter_aliases = {'vue': ['vue', 'javascript']} let g:ale_yaml_yamllint_options = "--config .editorconfig" let g:ale_open_list = 0 let g:ale_keep_list_window_open = 1 let g:ale_lint_on_save = 1 let g:ale_lint_on_enter = 1 " uncomment if you do not want to lint files on open let g:ale_lint_on_insert_leave = 1 " let g:ale_lint_on_text_changed = 1 let g:ale_lint_delay = 2500 " lint 2.5 seconds after text has changed let g:ale_fix_on_save = 1 let g:ale_completion_enabled = 1 " let g:ale_completion_autoimport = 1 let g:ale_sign_priority = 99 let g:ale_sign_error = "xx" let g:ale_sign_warning = ">>" let g:ale_sign_info = "--" "let g:ale_sign_style_error = "let g:ale_sign_style_warning = let g:ale_completion_symbols = { \ 'text': '', \ 'method': '', \ 'function': '', \ 'constructor': '', \ 'field': '', \ 'variable': '', \ 'class': '', \ 'interface': '', \ 'module': '', \ 'property': '', \ 'unit': 'unit', \ 'value': 'val', \ 'enum': '', \ 'keyword': 'keyword', \ 'snippet': '', \ 'color': 'color', \ 'file': '', \ 'reference': 'ref', \ 'folder': '', \ 'enum member': '', \ 'constant': '', \ 'struct': '', \ 'event': 'event', \ 'operator': '', \ 'type_parameter': 'type param', \ '': 'v' \ } packadd termdebug "useless shit " Fix some gitgutter stuff let g:gitgutter_enabled = 1 let g:gitgutter_sign_allow_clobber = 0 " do not allow gitgutter to overwrite signs let g:gitgutter_sign_priority = 50 let g:gitgutter_sign_added = '+' let g:gitgutter_sign_modified = '~' let g:gitgutter_sign_modified_removed = 'x' " Airline config set laststatus=2 " let g:airline#extensions#tabline#enabled = 1 let g:airline_theme='gruvbox' if !exists('g:airline_symbols') let g:airline_symbols = {} endif let g:airline_left_sep = '' let g:airline_left_alt_sep = '' let g:airline_right_sep = '' let g:airline_right_alt_sep = '' " let g:airline_symbols = {} let g:airline_symbols.branch = '' let g:airline_symbols.readonly = '' " let g:airline_symbols.linenr = '☰' let g:airline_symbols.linenr = '' " let g:airline_section_c = '' " let g:airline_section_c = '%t' let g:airline_section_y = '' let g:airline_section_x = '' " let g:airline_symbols.dirty='⚡' " let g:airline#extensions#branch#vcs_checks = ['untracked', 'dirty'] " These are the default mappings for vim-multi-cursor let g:multi_cursor_start_word_key = '' let g:multi_cursor_select_all_word_key = '' let g:multi_cursor_start_key = 'g' let g:multi_cursor_select_all_key = 'g' let g:multi_cursor_next_key = '' let g:multi_cursor_prev_key = '' let g:multi_cursor_skip_key = '' let g:multi_cursor_quit_key = '' " indent-guides, toggle with ig let g:indent_guides_enable_on_vim_startup = 0 let g:indent_guides_exclude_filetypes = ['help', 'terminal', 'nerdtree'] let g:indent_guides_start_level = 2 let g:indent_guides_guide_size = 1 "" Gutentags" let g:gutentags_cache_dir = expand('~/.vim/ctags_cache/') let g:gutentags_file_list_command = { \ 'markers': { \ '.git': 'git ls-files', \ '.hg': 'hg files', \ }, \ } let g:gutentags_generate_on_empty_buffer = 1 let g:gutentags_ctags_exclude = ['build', 'dist', '*css', '*json', '*yaml', '*md'] let g:gutentags_ctags_extra_args = ['--tag-relative=always', ] "" nerdtree let NERDTreeIgnore=['__pycache__'] " ultisnips let g:UltiSnipsExpandTrigger="" let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" let g:UltiSnipsEditSplit="vertical" "" Fzf let g:fzf_layout = { 'down': '~40%' }"