diff options
author | Matthew Lemon <y@yulqen.org> | 2024-03-13 10:40:50 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-03-13 10:40:50 +0000 |
commit | 2e872880b00ff2fa810dd97f3341c86accc90c73 (patch) | |
tree | b9f3e199e530a7cd265722b4b86cf6b5de4f7984 | |
parent | 87492b02e5ad430bb0e9d6a749f8e9dccb8cbf98 (diff) |
Gets ALE working
-rw-r--r-- | vim/vimrc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -58,7 +58,7 @@ command! Vlist botright vertical copen | vertical resize 50 nnoremap <leader>v : Vlist<CR> " }}} " Options {{{ -set clipboard=unnamed,unnamedplus " just past in with out needing "* +"set clipboard=unnamed,unnamedplus " just past in with out needing "* set autoread set exrc set secure @@ -115,8 +115,8 @@ endfunction " }}} " Folding {{{ if has('folding') - "set foldmethod=marker " default - set foldmethod=syntax + set foldmethod=marker " default + "set foldmethod=syntax " set foldmarker=#\ {{{,#\ }}} set viewoptions=folds,options,cursor,unix,slash endif @@ -177,13 +177,13 @@ autocmd BufEnter *.html,*.slim if s:is_tailwind() | \ endif " }}} " ALE {{{ -let g:ale_enabled = 0 +let g:ale_enabled = 1 let g:ale_set_balloons = 0 let g:ale_echo_msg_format = '[%linter%] %s [%severity%]' let g:ale_sign_error = '!' let g:ale_sign_warning = '?' let g:ale_lint_on_text_changed = 1 -let g:ale_hover_cursor = 0 +let g:ale_hover_cursor = 1 let g:ale_virtualtext_cursor = 'disabled' let g:ale_sign_column_always = 1 let g:ale_open_list = 0 |