mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
Merge remote-tracking branch 'upstream/main' into lint-required-files
This commit is contained in:
commit
fd7c559ded
2 changed files with 12 additions and 4 deletions
|
@ -330,3 +330,7 @@
|
|||
[rrvsh](https://github.com/rrvsh):
|
||||
|
||||
- Fix namespace of python-lsp-server by changing it to python3Packages
|
||||
|
||||
[Noah765](https://github.com/Noah765):
|
||||
|
||||
- Add missing `flutter-tools.nvim` dependency `plenary.nvim`.
|
||||
|
|
|
@ -134,10 +134,14 @@ in {
|
|||
})
|
||||
|
||||
(mkIf ftcfg.enable {
|
||||
vim.startPlugins =
|
||||
vim.startPlugins = [
|
||||
(
|
||||
if ftcfg.enableNoResolvePatch
|
||||
then ["flutter-tools-patched"]
|
||||
else ["flutter-tools-nvim"];
|
||||
then "flutter-tools-patched"
|
||||
else "flutter-tools-nvim"
|
||||
)
|
||||
"plenary-nvim"
|
||||
];
|
||||
|
||||
vim.pluginRC.flutter-tools = entryAnywhere ''
|
||||
require('flutter-tools').setup {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue