Compare commits
No commits in common. "7589d38ec70ea98910e8779895231e21eb87ff30" and "7867c6941581b38eb45a6bb49e04beaae88ad64a" have entirely different histories.
7589d38ec7
...
7867c69415
|
|
@ -206,11 +206,6 @@ rec {
|
|||
|
||||
programs.zathura = {
|
||||
enable = true;
|
||||
options = {
|
||||
selection-clipboard = "clipboard";
|
||||
synctex = "true";
|
||||
synctex-editor-command = "texlab inverse-search -i %{input} -l %{line}";
|
||||
};
|
||||
};
|
||||
|
||||
programs.pandoc = { enable = true; };
|
||||
|
|
|
|||
|
|
@ -25,21 +25,22 @@
|
|||
commands = "set buffer filetype typst";
|
||||
option = ".*\.typ";
|
||||
}
|
||||
# {
|
||||
# # When the filetype=latex option is set in a buffer context (automatically), add a new hook to build the latex file on write
|
||||
# name = "BufSetOption";
|
||||
# option = "filetype=latex";
|
||||
# commands = "hook buffer BufWritePost .* %{ texlab-build }";
|
||||
# }
|
||||
{
|
||||
# When the filetype=latex option is set in a buffer context (automatically), add a new hook to build the latex file on write
|
||||
name = "BufSetOption";
|
||||
option = "filetype=markdown";
|
||||
commands = "add-highlighter buffer/ wrap -word -indent -width 79";
|
||||
option = "filetype=latex";
|
||||
commands = "hook buffer BufWritePost .* %{ texlab-build }";
|
||||
}
|
||||
{
|
||||
name = "BufSetOption";
|
||||
option = "filetype=latex";
|
||||
commands = "add-highlighter buffer/ wrap -word -indent -width 79";
|
||||
option = "filetype=typst";
|
||||
commands = "hook buffer BufWritePost .* %{ nop %sh{ typst compile $kak_buffile } }";
|
||||
}
|
||||
{
|
||||
# When the filetype=markdown option is set (automatically), set word wrap on
|
||||
name = "WinSetOption";
|
||||
option = "filetype=markdown";
|
||||
commands = "set-option window lintcmd \"proselint\"";
|
||||
}
|
||||
{
|
||||
name = "BufSetOption";
|
||||
|
|
@ -51,11 +52,6 @@
|
|||
option = ".*\.Rmd";
|
||||
commands = "hook buffer BufWritePost .* %{ nop %sh{ Rscript -e \"rmarkdown::render(\\\"$kak_buffile\\\", 'pdf_document')\" } }";
|
||||
}
|
||||
{
|
||||
name = "BufCreate";
|
||||
option = ".*\.qmd";
|
||||
commands = "hook buffer BufWritePost .* %{ echo %sh{ quarto render $kak_buffile --to pdf } }";
|
||||
}
|
||||
];
|
||||
keyMappings = [
|
||||
# Define select all
|
||||
|
|
|
|||
|
|
@ -392,8 +392,6 @@ command = "texlab"
|
|||
#
|
||||
# Preview configuration for zathura with SyncTeX search.
|
||||
# For other PDF viewers see https://github.com/latex-lsp/texlab/wiki/Previewing
|
||||
build.forwardSearchAfter = true
|
||||
build.onSave = true
|
||||
forwardSearch.executable = "zathura"
|
||||
forwardSearch.args = [
|
||||
"%p",
|
||||
|
|
|
|||
Loading…
Reference in a new issue