1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 11:15:12 +01:00

Compare commits

...

3 Commits

7
.vimrc
View File

@@ -271,9 +271,12 @@ map <F9> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<
\ . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" \ . synIDattr(synID(line("."),col("."),0),"name") . "> lo<"
\ . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR> \ . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>
" Show indentation marks " Show indentation marks, enables conceallevel 2, so for example hides quotes
" in json files
Plugin 'Yggdroot/indentLine' Plugin 'Yggdroot/indentLine'
let g:indentLine_char = '┊' let g:indentLine_char = '┊'
"let g:indentLine_setConceal = 0
let g:indentLine_conceallevel = 1
" Colour-match brackets " Colour-match brackets
Plugin 'luochen1990/rainbow' Plugin 'luochen1990/rainbow'
@@ -362,7 +365,7 @@ Plugin 'tweekmonster/django-plus.vim'
" Code checker. For python, install flake8 or pylint, preferably in the " Code checker. For python, install flake8 or pylint, preferably in the
" virtualenv. For Django support, install pylint-django " virtualenv. For Django support, install pylint-django
Plugin 'w0rp/ale' Plugin 'dense-analysis/ale'
nmap <leader>= <Plug>(ale_fix) nmap <leader>= <Plug>(ale_fix)
" Quickly open the loclist to see syntax errors " Quickly open the loclist to see syntax errors
nmap <leader>; :lopen<CR> nmap <leader>; :lopen<CR>