From 1b179a8586e72ab5334e62ddf541e9ca972e8fd3 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sat, 17 Sep 2022 02:57:41 -0400 Subject: docs(readme): recommend rolling for 0.8, remove old breaking changes (#3028) --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8b8a9cdc..eb238ba8 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,20 @@ Make sure you have the release version of Neovim (0.7+). -### Linux: +### Linux/MacOS: + +If you are running Neovim 0.7+ ```bash bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) ``` +If you are running Neovim 0.8+ + +```bash +bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh) +``` + 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. In the same way, you can use `--no-install-dependencies` to skip the dependency installation. @@ -134,12 +142,6 @@ lvim.plugins = { - inside LunarVim `:PackerUpdate` -## Breaking changes - -- `lvim.lang.FOO` is no longer supported. Refer to for up-to-date instructions. -- `lvim.lsp.popup_border` has been deprecated in favor of `lvim.lsp.float.border` and `lvim.lsp.diagnostics.float.border`. -- `lvim.builtin.dashboard` has been replaced with `lvim.builtin.alpha`, see - ## Resources - [Documentation](https://www.lunarvim.org) -- cgit v1.2.3 From 518b1d4167162a54a6e76784038d30191613b76d Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Tue, 20 Sep 2022 14:11:58 +0430 Subject: Fix: make sure latest plugins are customizable (#3044) * fix: make navim-navic configurable * fix: make sure vim-illuminate is configurable * fix: make sure theme is configurable * fix(ci): don't verify uninstalled plugins * refactor(lsp): add setup_document_symbols util * revert: keep onedarker on freeze branch * refactor(lsp): avoid duplicate hl autocmds Co-authored-by: kylo252 <59826753+kylo252@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index eb238ba8..c5f8dc17 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Example: ```lua -- general lvim.format_on_save = true -lvim.colorscheme = "onedarker" +lvim.colorscheme = "tokyonight" lvim.leader = "space" -- add your own keymapping @@ -125,7 +125,7 @@ linters.setup { -- Additional Plugins lvim.plugins = { {"lunarvim/colorschemes"}, - {"folke/tokyonight.nvim"}, { + { "ray-x/lsp_signature.nvim", config = function() require"lsp_signature".on_attach() end, event = "BufRead" -- cgit v1.2.3 From bcfb980d204cdff012a555050245060eebdb608c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tuna=20Alika=C5=9Fifo=C4=9Flu?= Date: Wed, 21 Sep 2022 03:52:33 +0300 Subject: fix: add branch export for rolling installation (#3054) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index c5f8dc17..02462e83 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/ If you are running Neovim 0.8+ ```bash -bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh) +export LV_BRANCH="rolling"; bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh) ``` 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. -- cgit v1.2.3 From 59043c6629fa742dab5550ef31cef7a944887544 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Wed, 21 Sep 2022 19:21:14 -0400 Subject: docs: update images --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 02462e83..f8875025 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,12 @@ ## Showcase -![intro1](https://user-images.githubusercontent.com/59826753/159939936-3a9a8e94-05ea-48fa-8c46-69378276451b.png) -![info](https://user-images.githubusercontent.com/59826753/159939984-ac0190d7-a3fb-46c0-95ca-a6fec626bbac.png) +![intro1](https://user-images.githubusercontent.com/29136904/191624232-a7b13f11-cc9f-495e-879e-67ea0444c568.png) +![info](https://user-images.githubusercontent.com/29136904/191624942-3d75ef87-35cf-434d-850e-3e7cd5ce2ad0.png) -![demo1](https://user-images.githubusercontent.com/59826753/159940004-84975294-5703-4bf1-aa98-2cc97cb38d96.png) -![demo2](https://user-images.githubusercontent.com/59826753/159940040-375a0a28-4c81-4fdf-80f2-62853edf9b4f.png) +![demo1](https://user-images.githubusercontent.com/29136904/191625579-ce9efb1f-1e23-4a05-aebc-915a0f614d72.png) +![demo2](https://user-images.githubusercontent.com/29136904/191626018-2e9ee682-043c-4ce5-a5dd-c11b94759782.png) +![demo3](https://user-images.githubusercontent.com/29136904/191626246-ce0cc0c5-4b41-49e3-9cb7-4b1867ab0dcb.png) ## Install In One Command! -- cgit v1.2.3 From 257e3ff3697a55e7a17eab876fb8d0b85fd203de Mon Sep 17 00:00:00 2001 From: Vinicius Brasil Date: Wed, 28 Sep 2022 02:00:12 -0300 Subject: doc: Replace Tree-sitter `maintained` with `all` in README (#3088) `maintained` option is not supported anymore https://github.com/nvim-treesitter/nvim-treesitter/issues/2887 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index f8875025..2127ffd3 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ lvim.builtin.notify.active = true lvim.builtin.terminal.active = true -- Treesitter parsers change this to a table of the languages you want i.e. {"java", "python", javascript} -lvim.builtin.treesitter.ensure_installed = "maintained" +lvim.builtin.treesitter.ensure_installed = "all" lvim.builtin.treesitter.ignore_install = { "haskell" } -- Disable virtual text -- cgit v1.2.3 From 9def60f1dd09ac2244672b8570092229977b43b4 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Thu, 6 Oct 2022 08:55:06 +0200 Subject: feat: lock new installations to nvim 0.8+ (#3111) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2127ffd3..16ce0540 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,11 @@ ## Install In One Command! -Make sure you have the release version of Neovim (0.7+). +Make sure you have the release version of Neovim (0.8+). ### Linux/MacOS: -If you are running Neovim 0.7+ +If you are running Neovim 0.8+ ```bash bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) -- cgit v1.2.3