Add build dir to latexmkrc, add <TAB> for coc autocompletion selection

This commit is contained in:
flyingscorpio@arch-desktop 2020-11-24 13:58:26 +01:00
parent 2578d3bf52
commit a166ca1e8f
2 changed files with 10 additions and 0 deletions

View file

@ -8,3 +8,5 @@ sub run_makeglossaries {
push @generated_exts, 'glo', 'gls', 'glg';
push @generated_exts, 'acn', 'acr', 'alg';
$clean_ext .= ' %R.ist %R.xdy';
$out_dir='build';

View file

@ -69,6 +69,14 @@ Plug 'lervag/vimtex'
call plug#end()
" }}}
" PLUGIN OPTIONS {{{
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~ '\s'
endfunction
inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh()
let g:ale_python_mypy_options = '--strict --strict-optional'
let g:pymode_options_max_line_length = 90