mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
vim/update.py: mark some plugins as neovim ones
so that they use buildNeovimFrom2Nix I want to avoid adding a more complex heuristic for now or adding a column to vim-plugin-names.
This commit is contained in:
parent
a2d4d474c2
commit
d7bfa0dcc4
@ -116,7 +116,13 @@ class VimEditor(pluginupdate.Editor):
|
||||
def main():
|
||||
|
||||
global luaPlugins
|
||||
luaPlugins = run_nix_expr(GET_PLUGINS_LUA)
|
||||
|
||||
# whitelist
|
||||
luaPlugins = run_nix_expr(GET_PLUGINS_LUA) + [
|
||||
"diffview-nvim",
|
||||
"marks-nvim",
|
||||
"nvim-biscuits"
|
||||
]
|
||||
|
||||
editor = VimEditor("vim", ROOT, GET_PLUGINS)
|
||||
parser = editor.create_parser()
|
||||
|
Loading…
Reference in New Issue
Block a user