LaTeX files can now be automatically compiled in vim and jumping into the relevant lines from PDF to code or the other way around is possible too. Add the LaTeX coc-language server as well. Thanks to @AurelWeinhold
23 lines
510 B
Plaintext
23 lines
510 B
Plaintext
# Use system clipboard for selection.
|
|
set selection-clipboard "clipboard"
|
|
|
|
# Dark colors
|
|
set default-bg "#252525"
|
|
set notification-bg "#000000"
|
|
set notification-fg "#FFFFFF"
|
|
|
|
# Invert colors per default. Toggle with `i`
|
|
map i recolor
|
|
set recolor true
|
|
set recolor-lightcolor "#252525"
|
|
set recolor-darkcolor "#FFFFFF"
|
|
set recolor-keephue true
|
|
set recolor-reverse-video true
|
|
|
|
# Search while typing
|
|
set incremental-search true
|
|
|
|
# vimtex
|
|
set synctex true
|
|
set synctex-editor-command "nvr --remote +%{line} %{input}"
|