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