Quarto-nvim provides tools for working on Quarto manuscripts in Neovim. You can get started with Quarto here.
The get started section also comes with a video version to walk you through. The playlist is extened as more features are added, so join us for a "Coffee with Quarto and Neovim":
https://youtu.be/3sj7clNowlA?list=PLabWm-zCaD1axcMGvf7wFxJz8FZmyHSJ7
You can install quarto-nvim
from GitHub with your favourite Neovim plugin manager
like lazy.nvim,
packer.nvim or VimPlug.
Example lazy.nvim
plugin specification:
-- plugins/quarto.lua
return {
{
"quarto-dev/quarto-nvim",
dependencies = {
"jmbuhr/otter.nvim",
"nvim-treesitter/nvim-treesitter",
},
},
}
Because Quarto provides a lot of functionality through integration with existing plugins,
we recommend to experiment with the quarto-nvim kickstarter configuration
and then pick the relevant parts from the
lua/plugins/quarto.lua
file
to integrate it into your own existing configuration.
Plugins and their configuration to look out for in either of those files are:
{
'quarto-dev/quarto-nvim',
'jmbuhr/otter.nvim',
'hrsh7th/nvim-cmp',
'neovim/nvim-lspconfig',
'nvim-treesitter/nvim-treesitter'
}
Quarto-nvim requires the latest Neovim stable version (>= v0.10.0
).
You can pass a lua table with options to the setup function as shown in quarto-nvim-kickstarter/..quarto.lua
It will be merged with the default options, which are shown below in the example.
If you want to use the defaults, simply call setup
without arguments or with an empty table.
require('quarto').setup{
debug = false,
closePreviewOnExit = true,
lspFeatures = {
enabled = true,
chunks = "curly",
languages = { "r", "python", "julia", "bash", "html" },
diagnostics = {
enabled = true,
triggers = { "BufWritePost" },
},
completion = {
enabled = true,
},
},
codeRunner = {
enabled = false,
default_method = nil, -- 'molten' or 'slime'
ft_runners = {}, -- filetype to runner, ie. `{ python = "molten" }`.
-- Takes precedence over `default_method`
never_run = { "yaml" }, -- filetypes which are never sent to a code runner
},
}
Use the command
QuartoPreview
or access the function from lua, e.g. to create a keybinding:
local quarto = require('quarto')
quarto.setup()
vim.keymap.set('n', '<leader>qp', quarto.quartoPreview, { silent = true, noremap = true })
Then use the keyboard shortcut to open quarto preview
for the current file or project in the active working directory in the neovim integrated terminal in a new tab.
Note: While you can use QuartoPreview
without configuring the plugin via quarto.setup
,
other features strictly require it.
quarto-nvim
automatically activates otter.nvim
for quarto files if language features are enabled.
demo.mp4
Uou can open the hover documentation for R, python and julia code chunks with K
, got-to-definition with gd
etc.
and get autocompletion via the lsp source for your completion plugin.
A list of currently available language server requests can be found in the otter.nvim documentation.
To make diagnostics work with R you have to configure the linter a bit, since the language
buffers in the background separate code with blank links, which we want to ignore.
Otherwise you get a lot more diagnostics than you probably want.
Add file .lintr
to your home folder and fill it with:
linters: linters_with_defaults(
trailing_blank_lines_linter = NULL,
trailing_whitespace_linter = NULL
)
You can now also enable other lsp features, such as the show hover function and shortcut, independent of showing diagnostics by enabling lsp features but not enabling diagnostics.
Other languages might have similar issues (e.g. I see a lot of warnings about whitespace when activating diagnostics with lua
).
If you come across them and have a fix, I will be very happy about a pull request!
Or, what might ultimately be the cleaner way of documenting language specific issues, an entry in the wiki.
Quarto-nvim doesn't run code for you, instead, it will interface with existing code running plugins and tell them what to run. There are currently two such code running plugins that quarto will work with:
- molten-nvim - a code runner that supports the jupyter kernel, renders output below each code cell, and optionally renders images in the terminal.
- vim-slime - a general purpose code runner with support for sending code to integrated nvim terminals, tmux panes, and many others.
I recommend picking a code runner, setting it up based on its README, and then coming back to this point to learn how Quarto will augment that code runner.
This plugin enables easily sending code cells to your code runner. There are two different ways to do this: commands, covered below; and lua functions, covered right here. By default these functions will only run cells that are the same language as the current cell.
Quarto exposes code running functions through to runner module: require('quarto.runner')
. Those
functions are:
run_cell()
- runs the current cellrun_above(multi_lang)
- runs all the cells above the current one, and the current one, in orderrun_below(multi_lang)
- runs all the cells below the current one, and the current one, in orderrun_all(multi_lang)
- runs all the cells in the documentrun_line(multi_lang)
- runs the line of code at your cursorrun_range()
- run code inside the visual range
Each function that takes the optional multi_lang
argument will run cells of all languages when
called with the value true
, and will only run cells that match the language of the current cell
otherwise. As a result, just calling run_all()
will run all cells that match the language of the
current cell.
Here are some example run mappings:
local runner = require("quarto.runner")
vim.keymap.set("n", "<localleader>rc", runner.run_cell, { desc = "run cell", silent = true })
vim.keymap.set("n", "<localleader>ra", runner.run_above, { desc = "run cell and above", silent = true })
vim.keymap.set("n", "<localleader>rA", runner.run_all, { desc = "run all cells", silent = true })
vim.keymap.set("n", "<localleader>rl", runner.run_line, { desc = "run line", silent = true })
vim.keymap.set("v", "<localleader>r", runner.run_range, { desc = "run visual range", silent = true })
vim.keymap.set("n", "<localleader>RA", function()
runner.run_all(true)
end, { desc = "run all cells of all languages", silent = true })
QuartoPreview
QuartoClosePreview
QuartoHelp <..>
QuartoActivate
QuartoDiagnostics
QuartoHover
QuartoSend
QuartoSendAbove
QuartoSendBelow
QuartoSendAll
QuartoSendLine
Quarto works great with a number of plugins in the neovim ecosystem. You can find my personal (and thus up-to-date) configuration for use with Quarto, R and python here: