2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	Release 0.1
This is the current master branch and information here is not final. These are changes from the v0.1 tag.
Special thanks to home-manager for this release. Docs/manual generation, the new module evaluation system, and DAG implementation are from them.
Changelog
- 
Removed hare language support (lsp/tree-sitter/etc). vim.lsp.hareis no longer defined. If you use hare and would like it added back, please file an issue.
- 
& are now an enum of stringfor options sourced from the flake inputs. Users can still provide vim plugin packages.- If you are contributing and adding a new plugin, add the plugin name to
availablePluginsin [types-plugin.nix].
 
- If you are contributing and adding a new plugin, add the plugin name to
- 
neovimBuilderhas been removed for configuration. Using an overlay is no longer required. See the manual for the new way to configuration.
- 
Treesitter grammars are now configurable with . Utilizes the nixpkgs nvim-treesitterplugin rather than a custom input in order to take advantage of build support of pinned versions. See the relevant discourse post for more information. Packages can be found under thevimPlugins.nvim-treesitter.builtGrammarsnamespace.
- 
vim.configRCand are now of type DAG lines. This allows for ordering of the config. Usage is the same is in home-manager'shome.activationoption.
vim.luaConfigRC = lib.nvim.dag.entryAnywhere "config here"