summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-03-13 10:40:50 +0000
committerMatthew Lemon <y@yulqen.org>2024-03-13 10:40:50 +0000
commit2e872880b00ff2fa810dd97f3341c86accc90c73 (patch)
treeb9f3e199e530a7cd265722b4b86cf6b5de4f7984
parent87492b02e5ad430bb0e9d6a749f8e9dccb8cbf98 (diff)
Gets ALE working
-rw-r--r--vim/vimrc10
1 files changed, 5 insertions, 5 deletions
diff --git a/vim/vimrc b/vim/vimrc
index c49ec9f..50fe698 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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