From 5bf85682ed16404193f223db7b5561504df8285b Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Fri, 25 Oct 2024 14:52:24 +0200 Subject: [PATCH] nvim: fix vimtex not being able to start autocompiler due to airlatex --- .config/nvim/init.vim | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 5eecf16..a6892c9 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -1,4 +1,5 @@ let mapleader ="," +let g:vimwiki_list = [{'path': '~/dox/notes/', 'index': 'Main'}] if ! filereadable(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/autoload/plug.vim"')) echo "Downloading junegunn/vim-plug to manage plugins..." @@ -7,6 +8,8 @@ if ! filereadable(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/autolo autocmd VimEnter * PlugInstall endif +let g:vimwiki_list = [{'path': '~/dox/notes/', 'index': 'Main'}] + call plug#begin(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/plugged"')) Plug 'tpope/vim-surround' Plug 'preservim/nerdtree' @@ -28,10 +31,11 @@ Plug 'othree/html5.vim' Plug 'pangloss/vim-javascript' Plug 'evanleck/vim-svelte', {'branch': 'main'} Plug 'github/copilot.vim', -Plug 'dmadisetti/AirLatex.vim', {'branch': 'main'} Plug 'nathangrigg/vim-beancount' call plug#end() +let g:vimwiki_list = [{'path': '~/dox/notes/', 'index': 'Main'}] + set title set bg=light set go=a @@ -124,7 +128,7 @@ let g:jukit_convert_open_default = -1 let g:jukit_hist_use_ueberzug = 0 " - Set to 1 to use Überzug to display saved outputs instead of an ipython split window -let g:jukit_ueberzug_use_cached = 0 +let g:jukit_ueberzug_use_cached = 1 " - Whether to cache created images of saved outputs. If set to 0, will convert saved outputs to png from scratch each time. Note that this will make displaying saved outputs significantly slower. let g:jukit_ueberzug_pos = [0.25, 0.25, 0.4, 0.6] " - position and dimension of Überzug window WITH output split present - [x, y, width, height]. Use `:call jukit#ueberzug#set_default_pos()` to modify/visualize. @@ -145,7 +149,7 @@ let g:jukit_ueberzug_jupyter_cmd = 'jupyter' " - path to jupyter executable. By default it just uses the jupyter command found in your environment. If you started an output split in a virtual environment, make sure that you either have jupyter installed in that environment or set the absolute path to the python3 command. let g:jukit_ueberzug_cutycapt_cmd = 'CutyCapt' " - path to cutycapt executable -let g:jukit_ueberzug_imagemagick_cmd = 'convert' +let g:jukit_ueberzug_imagemagick_cmd = 'magick' " - path to imagemagick (`convert` command) executable " Nerd tree @@ -166,12 +170,6 @@ let R_start_libs = 'base,stats,graphics,grDevices,utils,methods' let R_hl_term = 0 " let Rout_more_colors = 1 -" AirLatex -" your login-name -" let g:AirLatexCookieDB="~/.mozilla/firefox/do0jepvp.default-release/cookies.sqlite" -let g:AirLatexCookie="cookies:overleaf2_session=s%3AtveT0u3Xn8VXTJmkUuSpO2p1o5SLGNYI.ARSAQd4K%2FO7L5ilui54Ht7voJWjD%2BxctQ1ngTRrlo6A" -" let g:AirLatexUsername="cookies:overleaf_session2=s%3AMANcnaAAj4VeIgXsNIiCINZ0QgwtYNzn.9x0PVRqOp8egbGYpnIHuffJUxmH%2F%2F2W%2FFnTBPmDny1M" - "This allows for change paste motion cp{motion} nmap cp :set opfunc=ChangePasteg@ function! ChangePaste(type, ...) @@ -179,11 +177,6 @@ function! ChangePaste(type, ...) silent exe "normal! p" endfunction -" optional: set server name -let g:AirLatexDomain="www.overleaf.com" - -let g:AirLatexAllowInsecure=0 - " vimtex: let g:vimtex_view_method = 'zathura' let g:vimtex_compiler_latexmk = { 'build_dir' : '',