Merge pull request #71 from horriblename/feat-lua-loader

feat: new option to enable lua module loader
This commit is contained in:
NotAShelf 2023-05-10 10:48:17 +03:00 committed by GitHub
commit f63e82c1c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View file

@ -12,6 +12,9 @@ Language specific support means there is a combination of language specific plug
* Zig: <<opt-vim.languages.zig.enable>>
* Markdown: <<opt-vim.languages.markdown.enable>>
* HTML: <<opt-vim.languages.html.enable>>
* SQL: <<opt-vim.languages.sql.enable>>
* Dart: <<opt-vim.languages.dart.enable>>
* Go: <<opt-vim.languages.go.enable>>
Adding support for more languages, and improving support for existing ones are great places where you can contribute with a PR.

View file

@ -13,3 +13,5 @@ ttps://github.com/horriblename[horriblename]:
* Added `clangd` as alternative lsp for C/++.
* Added `toggleterm` integration for `lazygit`.
* Added new option `enableLuaLoader` to enable neovim's experimental module loader for faster startup time.

View file

@ -144,5 +144,7 @@ with builtins; {
default = true;
description = "Follow editorconfig rules in current directory";
};
enableLuaLoader = mkEnableOption "Enable the experimental Lua module loader to speed up the start up process";
};
}

View file

@ -9,6 +9,9 @@ with builtins; let
wrapLuaConfig = luaConfig: ''
lua << EOF
${optionalString cfg.enableLuaLoader ''
vim.loader.enable()
''}
${luaConfig}
EOF
'';