From 5fd8b4b72642ab94c33bb6e706617a554c0d2f19 Mon Sep 17 00:00:00 2001 From: Lucas Santos Date: Wed, 2 Mar 2022 15:57:14 +0100 Subject: feat: add option to automatically answer 'yes' for sh install script (#2306) --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 23b8e2d0..ee9634ca 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,18 @@ You can find all the documentation for LunarVim at [lunarvim.org](https://www.lu Make sure you have the release version of Neovim (0.6.1+). -Linux: +### Linux: + ```bash bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) ``` -Windows (Powershell): +To run the install script without any interaction you can pass the `-y` flag to automatically install all dependencies and have no prompts. This is particularly useful in automated installations. + +The same way, you can use `--no-install-dependencies` to skip the dependency installation. + +### Windows (Powershell): + ```powershell Invoke-WebRequest https://raw.githubusercontent.com/LunarVim/LunarVim/master/utils/installer/install.ps1 -UseBasicParsing | Invoke-Expression ``` @@ -159,7 +165,7 @@ lvim.plugins = { > - @mvllow, Potential LunarVim user.
- + [![Lua](https://img.shields.io/badge/Made%20with%20Lua-blue.svg?style=for-the-badge&logo=lua)](#madewithlua) - +
-- cgit v1.2.3 From 4a9e6645ed4aaaa18a89acc86b76a838c0037d1a Mon Sep 17 00:00:00 2001 From: Kerem Bozdas Date: Mon, 7 Mar 2022 12:19:25 +0300 Subject: docs(readme): fix typo in example config (#2333) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index ee9634ca..4eeed945 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ lvim.builtin.treesitter.ignore_install = { "haskell" } -- Disable virtual text lvim.lsp.diagnostics.virtual_text = false --- Select which servers should be configured manually. Requires `:LvimCacheRest` to take effect. +-- Select which servers should be configured manually. Requires `:LvimCacheReset` to take effect. -- See the full default list `:lua print(vim.inspect(lvim.lsp.override))` vim.list_extend(lvim.lsp.override, { "pyright" }) -- cgit v1.2.3