Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
release: Release doom-nvim v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgmeean committed Nov 6, 2022
1 parent b710a88 commit 818df17
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<leader>cs` symbols view
* feat(modules,lsp): Cleaner completion menu
* fix(modules,telescope): Fixed filebrowser `<leader>.` 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]

Expand Down
4 changes: 0 additions & 4 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions lua/doom/utils/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ return {
langs = {
-- Scripts
"lua",
"python",
-- "python",
-- "bash",
-- "fish",
-- "gdscript",
Expand Down

0 comments on commit 818df17

Please sign in to comment.