Browse Source

docs: update docs & changelog

my-config
NTBBloodbath 4 years ago
parent
commit
cd0af1959d
No known key found for this signature in database GPG Key ID: 18D6730BC846AAC5
  1. 10
      CHANGELOG.md
  2. 23
      doc/doom_nvim.txt

10
CHANGELOG.md

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [2.1.1] - 2021-05-02
### Fixed
- Squashed a bug in packer setup
- Stop referencing autoload in docs
## [2.1.0] - 2021-05-02 ## [2.1.0] - 2021-05-02
### Added ### Added
@ -150,7 +157,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial stable release - Initial stable release
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.1.0...HEAD [unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.1.1...HEAD
[2.1.1]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.1.0...v2.1.1
[2.1.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.0.0...v2.1.0 [2.1.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v1.2.0...v2.0.0 [2.0.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v1.2.0...v2.0.0
[1.2.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v0.2.0...v0.3.0 [1.2.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v0.2.0...v0.3.0

23
doc/doom_nvim.txt

@ -672,22 +672,23 @@ functions of Doom Nvim. It is a copy of the doom.vim file.
============================================================================== ==============================================================================
HACKING AUTOLOAD *doom_nvim_hacking_autoload* HACKING LUA CORE *doom_nvim_hacking_lua_core*
The `autoload` directory content is loaded by Neovim on_start. It is the The `lua/doom` directory content is loaded by Neovim on_start. It is the
location of the Doom Nvim plugin which is loaded everytime nvim starts. location of the Doom Nvim plugin which is loaded everytime nvim starts.
The `doom.vim` file contains most of the global variables used by Doom Nvim The `doom/default/init.lua` file contains most of the global variables used by
and executes the init functions of Doom Nvim. Doom Nvim and executes the init functions of Doom Nvim.
The files inside the `doom/` directory have core functions for Doom Nvim. The files inside the `doom/` directory have core functions for Doom Nvim.
- autocmds.vim : Autocommands - autocmds/ : Autocommands
- config.vim : Manages the BFC - config/ : Manages the BFC
- functions.vim : Utility functions - functions/ : Utility functions
- health/ : Used to check the health of installation - health/ : Used to check the health of installation
- logging.vim : Logging handler - logging/ : Logging handler
- system.vim : Cross-platform support (WIP) - system/ : Cross-platform support (WIP)
- utils/ : Utility Lua functions
============================================================================== ==============================================================================
@ -741,6 +742,10 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
and this project adheres to Semantic Versioning and this project adheres to Semantic Versioning
(https://semver.org/spec/v2.0.0.html). (https://semver.org/spec/v2.0.0.html).
- 2.1.1
- Fixed
- Squashed a bug in packer setup
- Stop referencing autoload in docs
- 2.1.0 - 2.1.0
- Added - Added
- Now the `:messages` are logged automatically on exit, should provide - Now the `:messages` are logged automatically on exit, should provide

Loading…
Cancel
Save