Add build dir to latexmkrc, add <TAB> for coc autocompletion selection
This commit is contained in:
parent
2578d3bf52
commit
a166ca1e8f
2 changed files with 10 additions and 0 deletions
|
@ -8,3 +8,5 @@ sub run_makeglossaries {
|
||||||
push @generated_exts, 'glo', 'gls', 'glg';
|
push @generated_exts, 'glo', 'gls', 'glg';
|
||||||
push @generated_exts, 'acn', 'acr', 'alg';
|
push @generated_exts, 'acn', 'acr', 'alg';
|
||||||
$clean_ext .= ' %R.ist %R.xdy';
|
$clean_ext .= ' %R.ist %R.xdy';
|
||||||
|
|
||||||
|
$out_dir='build';
|
||||||
|
|
|
@ -69,6 +69,14 @@ Plug 'lervag/vimtex'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
" }}}
|
" }}}
|
||||||
" PLUGIN OPTIONS {{{
|
" 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:ale_python_mypy_options = '--strict --strict-optional'
|
||||||
|
|
||||||
let g:pymode_options_max_line_length = 90
|
let g:pymode_options_max_line_length = 90
|
||||||
|
|
Loading…
Add table
Reference in a new issue