Skip to content

Commit

Permalink
Merge branch 'master' into docs/autocommd-remember-cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
tfemby authored Feb 11, 2024
2 parents f0512c2 + 5aefc9e commit efd8084
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/installation/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 1
## Prerequisites

- Make sure you have installed the latest version of [`Neovim v0.9.0+`](https://github.com/neovim/neovim/releases/latest).
- Have [`git`](https://cli.github.com/), [`make`](https://www.gnu.org/software/make/), [`pip`](https://pypi.org/project/pip/), [`python`](https://www.python.org/), [`npm`](https://npmjs.com/), [`node`](https://nodejs.org/) and [`cargo`](https://www.rust-lang.org/tools/install) installed on your system.
- Have [`git`](https://cli.github.com/), [`make`](https://www.gnu.org/software/make/), [`pip`](https://pypi.org/project/pip/), [`python`](https://www.python.org/), [`npm`](https://npmjs.com/), [`node`](https://nodejs.org/), [`cargo`](https://www.rust-lang.org/tools/install) and [`ripgrep`](https://github.com/BurntSushi/ripgrep) installed on your system.
- [Resolve `EACCES` permissions when installing packages globally](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally) to avoid error when installing packages with npm.
- [`PowerShell 7+`](https://learn.microsoft.com/en-us/powershell/scripting/whats-new/migrating-from-windows-powershell-51-to-powershell-7?view=powershell-7.2) (for Windows).

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-1.2/plugins/extra-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ table.insert(lvim.builtin.cmp.sources, 1, { name = "copilot" })
```lua
{
"iamcco/markdown-preview.nvim",
run = "cd app && npm install",
build = "cd app && npm install",
ft = "markdown",
config = function()
vim.g.mkdp_auto_start = 1
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-1.3/configuration/ftplugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ From `:h ftplugin`
Example for setting specific `shiftwidth` and `tabstop` that only apply for `C` file-types.

```lua
-- create a file at $LUNARVIM_CONFIG_DIR/after/ftplugin/c.lua
-- create a file at $LUNARVIM_CONFIG_DIR/ftplugin/c.lua
vim.cmd("setlocal tabstop=4 shiftwidth=4")
```
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ For a more lightweight, easier-to-use alternative, check out the author's new, w

```lua
{
"windwp/nvim-spectre",
"nvim-pack/nvim-spectre",
event = "BufRead",
config = function()
require("spectre").setup()
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-1.3/installation/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 1
## Prerequisites

- Make sure you have installed the latest version of [`Neovim v0.9.0+`](https://github.com/neovim/neovim/releases/latest).
- Have [`git`](https://cli.github.com/), [`make`](https://www.gnu.org/software/make/), [`pip`](https://pypi.org/project/pip/), [`python`](https://www.python.org/), [`npm`](https://npmjs.com/), [`node`](https://nodejs.org/) and [`cargo`](https://www.rust-lang.org/tools/install) installed on your system.
- Have [`git`](https://cli.github.com/), [`make`](https://www.gnu.org/software/make/), [`pip`](https://pypi.org/project/pip/), [`python`](https://www.python.org/), [`npm`](https://npmjs.com/), [`node`](https://nodejs.org/), [`cargo`](https://www.rust-lang.org/tools/install) and [`ripgrep`](https://github.com/BurntSushi/ripgrep) installed on your system.
- [Resolve `EACCES` permissions when installing packages globally](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally) to avoid error when installing packages with npm.
- [`PowerShell 7+`](https://learn.microsoft.com/en-us/powershell/scripting/whats-new/migrating-from-windows-powershell-51-to-powershell-7?view=powershell-7.2) (for Windows)

Expand Down

0 comments on commit efd8084

Please sign in to comment.