v1.0.0
This is our first stable release π This version supports nvim v0.8.*
(New features from nvim v0.9
are not yet supported.)
Changes brought till this release would require a manual cleanup. Refer to the 'SUMMARY' section for detailed instructions.
SUMMARY
- The package manager is now lazy.nvim. To remove old packer.nvim cache, delete the following folder manually (This path is the same on all platforms):
rm -rf ~/.local/share/nvim/site/pack
- There's a new interactive bootstrapper for Windows! Windows users can invoke this script to automatically install missing dependencies and set required options. Even if you have installed
nvimdots
before, we still recommend you to execute this install script to ensure that everything works properly.
Note: This script REQUIRESpowershell
>v7.1
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/ayamir/nvimdots/HEAD/scripts/install.ps1'))
- We now support editing big files. This feature has been tested with ~25 MiB
json
file and ~183 MiB plain text file. README
has been rewritten!- Minor fixes. Have a look at the "What's Changed" section for more information.
What's Changed
- refactor(pack): BREAKING CHANGE, migrate to lazy.nvim as package manager. by @ayamir in #425
- fix: load copilot after InsertEnter. by @ayamir in c3c0365
- feat: set colorscheme via
settings.lua
. by @ayamir in 0e71fbf - fix(nvim-tree): Replace alpha with the target file by @Jint-lzxy in #436
- chore(issue-template): Update lsp log path by @Jint-lzxy in #442
- fix(lspsaga): Prevent lspsaga from flickering by @Jint-lzxy in #443
- change backup folder name by @zll600 in #444
- feat: Large file support by @Jint-lzxy in #394
- chore(lspsaga & catppuccin): Migrate to v0.2.4. by @Jint-lzxy in #449
- feat(script): Complete installation script on Windows. by @Jint-lzxy in #452
- feat(keymap): add keymap for lsp rename in project range. by @ayamir in 7e2ec8a
- refactor(README)!: Rewrite README by @Jint-lzxy in #454
- fix: fold issue of files opened by telescope. by @ayamir in 4d622e1
New Contributors
Full Changelog: v1.0.0-rc1...v1.0.0