From 12f6437deaee4034b917659fa3bdfe01eb6962ce Mon Sep 17 00:00:00 2001 From: Ronald Record Date: Mon, 8 Apr 2024 16:50:19 -0700 Subject: [PATCH] Bump minor version, update changelog --- CHANGELOG.md | 17 +++++++++++++++++ ReleaseNotes.md | 4 ++-- VERSION | 2 +- lua/configuration.lua | 8 ++++++++ 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd24014f..b4eb41b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ ### 🐞 Fixed +## v3.1.5r4 + +### ⚡️ Added + +- Install `stylua` in `install_neovim.sh` +- Add `concat_tables` function, check both lsp tables in `lspconfig` +- Install `taplo` with `mason-lspconfig` +- Use `pip` to install `pynvim` +- Use GNU sed on `macOS` +- Use Homebrew to install `Bob` if available + +### 🐞 Fixed + +- Use temporary `astrolsp.lua` for `AstroNvimV4` initialization +- Move `jsonls` out of installed lsp servers, move `vimls` in +- Fix update categories, was installing all instead of updating installed + ## v3.1.5r3 ### ⚡️ Added diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 730b90d7..5eb87b5f 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -17,7 +17,7 @@ supported `Starter` configurations and can be installed with `lazyman -x AstroNv This major new release of `lazyman` supports over 100 Neovim configurations. The `nvim-Lazyman` Neovim configuration options and enabled plugins can be managed through the `lazyman` command menus. The Lazyman initialization defaults to using the native package manager rather than Homebrew to install Neovim dependencies and tools. Native package managers are supported on Debian based platforms (e.g. Ubuntu), RPM based platforms (e.g. Fedora), Arch Linux, Alpine Linux, SUSE Linux, and Void Linux. To use Homebrew rather than the native package manager, use `lazyman -h ...` when initializing the system. Homebrew is the default on macOS and used elsewhere if no supported native package manager is found. Version 3.1 adds support for 3 namespaces in the `Lazyman` Neovim configuration - `ecovim` (the default), `free` (the original), and `onno`. All namespaces can be managed via menus (`lazyman -F`). -All that is needed to bootstrap `Lazyman` is the [lazyman.sh](https://github.com/doctorfree/nvim-lazyman/releases/download/v3.1.5r3/lazyman.sh) script. Download and execute to get started: +All that is needed to bootstrap `Lazyman` is the [lazyman.sh](https://github.com/doctorfree/nvim-lazyman/releases/download/v3.1.5r4/lazyman.sh) script. Download and execute to get started: ```bash git clone https://github.com/doctorfree/nvim-lazyman $HOME/.config/nvim-Lazyman @@ -114,7 +114,7 @@ If, after initializing Lazyman with `lazyman -Z`, you wish to let Lazyman instal ### Bootstrap -To bootstrap the Lazyman Neovim configuration manager, the `lazyman.sh` script must be downloaded and executed. The download can be performed with `git`, `curl`, `wget`, copy/paste, or [download the release artifact](https://github.com/doctorfree/nvim-lazyman/releases/download/v3.1.5r3/lazyman.sh). +To bootstrap the Lazyman Neovim configuration manager, the `lazyman.sh` script must be downloaded and executed. The download can be performed with `git`, `curl`, `wget`, copy/paste, or [download the release artifact](https://github.com/doctorfree/nvim-lazyman/releases/download/v3.1.5r4/lazyman.sh). The recommended bootstrap procedure is with `git`: diff --git a/VERSION b/VERSION index 868ba800..13294854 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ VERSION=3.1.5 -RELEASE=3 +RELEASE=4 PACKAGE=1 diff --git a/lua/configuration.lua b/lua/configuration.lua index 12a9357c..4a08f01b 100644 --- a/lua/configuration.lua +++ b/lua/configuration.lua @@ -204,13 +204,21 @@ conf.indentline_style = "mini" -- treesitter parsers to be installed conf.treesitter_ensure_installed = { "bash", + "c", + "cpp", + "json", + "jsonc", + "javascript", "lua", "markdown", "markdown_inline", + "python", "query", "regex", + "toml", "vim", "vimdoc", + "yaml", } -- Enable clangd or ccls for C/C++ diagnostics -- Note: if enabled then the tool must be installed and in the execution path