Compare commits

..

No commits in common. "3f89412fcc146d3a5a06ce4ccd00689193f71eef" and "57caa424e6575a8908d2815545af414484f4d2ef" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

@ -24,7 +24,7 @@ let g:ale_fixers = {
\ "vue": ["prettier", "eslint"]
\}
let g:ale_fixers_aliases = {'vue': ['vue', 'javascript']}
let g:ale_popup_menu_enabled =1
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"
@ -71,8 +71,6 @@ let g:ale_sign_warning = ">>"
let g:ale_sign_info = "--"
"let g:ale_sign_style_error =
"let g:ale_sign_style_warning =
highlight link ALEVirtualTextError ALEError
highlight link ALEVirtualTextWarning ALEWarning
let g:ale_completion_symbols = {
\ 'text': '',

View File

@ -91,7 +91,6 @@ nmap <leader>h :ALEHover<CR>
nmap <leader>r :ALERename<CR>
nmap <leader>` :ALELint<CR>
nmap <leader>F :ALEFix<CR>
nmap <leader>D :ALEToggle<CR>
map <leader>nn :NERDTreeToggle<CR>

View File

@ -26,7 +26,6 @@ colorscheme gruvbox
" General stuff
set nowrap
set mouse=a
set mousemodel=popup_setpos " allow for ALE code actions
set relativenumber number
set foldlevelstart=3 foldmethod=indent nofoldenable "without foldenable all folds are open at startup"
set ttymouse=xterm2 " fix mouse when used in tmux/byobu https://unix.stackexchange.com/q/50733