From 818df17439a9357c06928e094bcf8c08a8001ae5 Mon Sep 17 00:00:00 2001 From: connorgmeean Date: Sun, 6 Nov 2022 16:32:06 +1100 Subject: [PATCH] release: Release doom-nvim v4.1.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ config.lua | 4 ---- lua/doom/utils/init.lua | 4 ++-- modules.lua | 2 +- 4 files changed, 28 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf49df7..fbba3dcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.1.0] + +See a more detailed changelist on the release https://github.com/doom-neovim/doom-nvim/releases/tag/v4.0.5. + +### What's Changed +* fix(langs,vue): Reconfigured to use single LSP instance. +* feat(core): Added `:DoomProfile` command to profile/trace internal startup time. +* tweak(modules,neorg): Lazy-load neorg (-100ms on startup) +* feat(modules, linter): Show null-ls source in error. +* fix(modules,telescope): Fix `cs` symbols view +* feat(modules,lsp): Cleaner completion menu +* fix(modules,telescope): Fixed filebrowser `.` not opening files. +* feat(core,treesitter): Add option to opt out of gcc/clang warning message +* feat(core,langs): Improved error messaging with null-ls package install failures. +* feat(langs): Add `lsp_config` option to configure lsp provider. +* fix(comments): Update plugin call convention by @Fryuni in https://github.com/doom-neovim/doom-nvim/pull/404 +* fix(dashboard): Fix shortcuts shown on dashboard by @Fryuni in https://github.com/doom-neovim/doom-nvim/pull/403 +* Fixed backup dirs & added doom-nvim installed check by @Coloursplash in https://github.com/doom-neovim/doom-nvim/pull/401 +* feat(auto_install): Switch from nvim-lsp-installer to mason.nvim + various other improvements. by @connorgmeehan in https://github.com/doom-neovim/doom-nvim/pull/405 + + +### New Contributors +* @Coloursplash made their first contribution in https://github.com/doom-neovim/doom-nvim/pull/401 + +**Full Changelog**: https://github.com/doom-neovim/doom-nvim/compare/v4.0.5...v4.1.0 ## [4.0.5] diff --git a/config.lua b/config.lua index d7618e60..34f21449 100644 --- a/config.lua +++ b/config.lua @@ -41,8 +41,4 @@ -- { "FileType", "javascript", function() print('This is a javascript file') end } -- }) -doom.indent = 2 -doom.core.treesitter.settings.show_compiler_warning_message = false -doom.core.reloader.settings.reload_on_save = false - -- vim: sw=2 sts=2 ts=2 expandtab diff --git a/lua/doom/utils/init.lua b/lua/doom/utils/init.lua index ae8e0a3a..13dcf2b2 100644 --- a/lua/doom/utils/init.lua +++ b/lua/doom/utils/init.lua @@ -6,8 +6,8 @@ local fs = require("doom.utils.fs") --- Doom Nvim version utils.version = { major = 4, - minor = 0, - patch = 5, + minor = 1, + patch = 0, } --- Currently supported version of neovim for this build of doom-nvim diff --git a/modules.lua b/modules.lua index e124db9a..04463a58 100644 --- a/modules.lua +++ b/modules.lua @@ -58,7 +58,7 @@ return { langs = { -- Scripts "lua", - "python", + -- "python", -- "bash", -- "fish", -- "gdscript",