Skip to content

Commit

Permalink
show example lazy.nvim plugin spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Jul 5, 2024
1 parent c873128 commit 7d17ded
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,26 @@ The playlist is extened as more features are added, so join us for a "Coffee wit
## Setup

You can install `quarto-nvim` from GitHub with your favourite Neovim plugin manager
like [lazy.nvim](https://github.com/folke/lazy.nvim), [packer.nvim](https://github.com/wbthomason/packer.nvim) or [VimPlug](https://github.com/junegunn/vim-plug).
like [lazy.nvim](https://github.com/folke/lazy.nvim),
[packer.nvim](https://github.com/wbthomason/packer.nvim) or [VimPlug](https://github.com/junegunn/vim-plug).

Because Quarto provides a lot of functionality through integration with existing plugins, we recommend to experiment with the [quarto-nvim kickstarter configuration](https://github.com/jmbuhr/quarto-nvim-kickstarter)
Example `lazy.nvim` plugin specification:

```lua
-- 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](https://github.com/jmbuhr/quarto-nvim-kickstarter)
and then pick the relevant parts from the
[`lua/plugins/quarto.lua`](https://github.com/jmbuhr/quarto-nvim-kickstarter/blob/main/lua/plugins/quarto.lua) file
to integrate it into your own existing configuration.
Expand Down

0 comments on commit 7d17ded

Please sign in to comment.