From a166ca1e8f27512fc4e7df56368c9a9facc28e45 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Tue, 24 Nov 2020 13:58:26 +0100 Subject: [PATCH] Add build dir to latexmkrc, add for coc autocompletion selection --- dotfiles/latexmkrc | 2 ++ dotfiles/vim/vimrc | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/dotfiles/latexmkrc b/dotfiles/latexmkrc index 5bcb830..94e9e5f 100644 --- a/dotfiles/latexmkrc +++ b/dotfiles/latexmkrc @@ -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'; diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 2674814..272e53f 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -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 + \ pumvisible() ? "\" : + \ check_back_space() ? "\" : + \ coc#refresh() let g:ale_python_mypy_options = '--strict --strict-optional' let g:pymode_options_max_line_length = 90