fix: don't set vi[m]Alias if appName != "nvim"
This commit is contained in:
+4
-2
@@ -18,8 +18,10 @@ with lib;
|
|||||||
withSqlite ? true,
|
withSqlite ? true,
|
||||||
withRuby ? false,
|
withRuby ? false,
|
||||||
withNodeJs ? false,
|
withNodeJs ? false,
|
||||||
viAlias ? true,
|
# You probably don't want to create vi or vim aliases
|
||||||
vimAlias ? true,
|
# if the appName is something different than "nvim"
|
||||||
|
viAlias ? appName == "nvim",
|
||||||
|
vimAlias ? appName == "nvim",
|
||||||
}: let
|
}: let
|
||||||
defaultPlugin = {
|
defaultPlugin = {
|
||||||
plugin = null; # e.g. nvim-lspconfig
|
plugin = null; # e.g. nvim-lspconfig
|
||||||
|
|||||||
Reference in New Issue
Block a user