Skip to content

Commit

Permalink
update plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Feb 19, 2023
2 parents 9f44474 + 4d6a50c commit bdd9a8d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Companion to <https://github.com/quarto-dev/quarto-nvim>.

## Videos

Check out this playlist for a full guide and walkthrough:
https://youtube.com/playlist?list=PLabWm-zCaD1axcMGvf7wFxJz8FZmyHSJ7

## Setup

Clone this repo into `~/.config/nvim/` or copy-paste just the parts you like.
Expand All @@ -27,9 +32,14 @@ Check out the previous link for those (or comment out the extension in `./lua/pl

Now you are good to go!

## Videos
## Updating

https://youtube.com/playlist?list=PLabWm-zCaD1axcMGvf7wFxJz8FZmyHSJ7
Certain updates to plugins may leave behind unused plugin data. If this configuration produces an error on startup, try removing those first, allowing the lazy.nvim package manager to recreate the correct plugin structure:

```bash
rm -r ~/.local/share/nvim
rm -r ~/.local/state/nvim
```

## Screenshots

Expand All @@ -51,6 +61,7 @@ Or combine it with [tmux-kickstarter](https://github.com/jmbuhr/tmux-kickstarter

Some of the plugins included are:

- <https://github.com/folke/lazy.nvim>
- <https://github.com/jpalardy/vim-slime>
- <https://github.com/neovim/nvim-lspconfig>
- <https://github.com/nvim-treesitter/nvim-treesitter>
Expand Down
11 changes: 11 additions & 0 deletions ftplugin/quarto.lua
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
vim.b.slime_cell_delimiter = "```"


-- wrap text, but by word no character
-- indent the wrappped line
vim.wo.wrap = true
vim.wo.linebreak = true
vim.wo.breakindent = true
vim.wo.showbreak = '|'



4 changes: 0 additions & 4 deletions lua/config/keymap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,6 @@ wk.register(
c = { ':DiffviewClose<cr>', 'close' },
}
},
t = {
name = 'treesitter',
h = { ":TSNodeUnderCursor<cr>", "hover" },
},
w = {
name = 'write',
w = { ":w<cr>", "write" },
Expand Down

0 comments on commit bdd9a8d

Please sign in to comment.