diff --git a/docs/manual/configuring/custom-plugins/legacy-method.md b/docs/manual/configuring/custom-plugins/legacy-method.md index e7821712..e0228ee9 100644 --- a/docs/manual/configuring/custom-plugins/legacy-method.md +++ b/docs/manual/configuring/custom-plugins/legacy-method.md @@ -1,17 +1,17 @@ # Legacy Method {#sec-legacy-method} Prior to version **0.5**, the method of adding new plugins was adding the plugin -package to {option}`vim.startPlugins` and adding its configuration as a DAG under -one of `vim.configRC` or {option}`vim.luaConfigRC`. While `configRC` has been -deprecated, users who have not yet updated to 0.5 or those who prefer a more -hands-on approach may choose to use the old method where the load order of the -plugins is explicitly determined by DAGs without internal abstractions. +package to {option}`vim.startPlugins` and adding its configuration as a DAG +under one of `vim.configRC` or {option}`vim.luaConfigRC`. While `configRC` has +been deprecated, users who have not yet updated to 0.5 or those who prefer a +more hands-on approach may choose to use the old method where the load order of +the plugins is explicitly determined by DAGs without internal abstractions. ## Adding New Plugins {#sec-adding-new-plugins} To add a plugin not available in **nvf** as a module to your configuration using -the legacy method, you must add it to {option}`vim.startPlugins` in order to make -it available to Neovim at runtime. +the legacy method, you must add it to {option}`vim.startPlugins` in order to +make it available to Neovim at runtime. ```nix {pkgs, ...}: { diff --git a/docs/manual/release-notes/rl-0.1.md b/docs/manual/release-notes/rl-0.1.md index 91037f2a..8fc48ca8 100644 --- a/docs/manual/release-notes/rl-0.1.md +++ b/docs/manual/release-notes/rl-0.1.md @@ -44,5 +44,6 @@ vim.luaConfigRC = lib.nvim.dag.entryAnywhere "config here" [MoritzBoehme](https://github.com/MoritzBoehme): -- `catppuccin` theme is now available as a neovim theme {option}`vim.theme.style` - and Lualine theme {option}`vim.statusline.lualine.theme`. +- `catppuccin` theme is now available as a neovim theme + {option}`vim.theme.style` and Lualine theme + {option}`vim.statusline.lualine.theme`. diff --git a/docs/manual/release-notes/rl-0.7.md b/docs/manual/release-notes/rl-0.7.md index 4a3db6ca..8829abbd 100644 --- a/docs/manual/release-notes/rl-0.7.md +++ b/docs/manual/release-notes/rl-0.7.md @@ -301,8 +301,8 @@ The changes are, in no particular order: controlling the default behaviour of the `nvim-navic` component on Lualine, which used to occupy `winbar.lualine_c` as long as breadcrumbs are enabled. - `vim.ui.breadcrumbs.alwaysRender` has been renamed to - {option}`vim.ui.breadcrumbs.lualine.winbar.alwaysRender` to be conform to the - new format. + {option}`vim.ui.breadcrumbs.lualine.winbar.alwaysRender` to be conform to + the new format. - Add [basedpyright](https://github.com/detachhead/basedpyright) as a Python LSP server and make it default.