various config options updated; tmux to M-S instead of C-M

This commit is contained in:
2023-01-17 12:18:58 -07:00
parent f121122c56
commit b6b7736474
7 changed files with 52 additions and 42 deletions

View File

@ -20,9 +20,6 @@ nnoremap <Space> @q
" \q for `q:`
nnoremap <Leader>q q:
" \f for fold
nnoremap <Leader>f z
" \s previous selection command
nnoremap <Leader>s :'<,'>

View File

@ -63,6 +63,12 @@ let g:ale_linters = {
\ 'python' : ['pylint'],
\ 'go' : ['golint']
\}
let g:ale_fixers = {
\ 'javascript': ['prettier'],
\ 'typescript': ['prettier']
\}
let g:ale_lint_on_text_changed = 0
let g:ale_lint_on_insert_leave = 0
let g:ale_lint_on_save = 1
@ -70,6 +76,7 @@ let g:ale_sign_column_always = 1
nmap <Leader>ae <Plug>(ale_next)
nmap <Leader>ar <Plug>(ale_previous)
nmap <Leader>f <Plug>(ale_fix)
" }}}
" ---------------------------------------------------------------------