this repo has no description

fix(wrapper): only source init if `APPNAME` env matches pname (#7)

* fix(wrapper): only overwrite rtp if `APPNAME` env matches pname

* fix: only change rtp if `APPNAME` matches

* fix: simply wrap `VIMINIT`

authored by robinwobin.dev and committed by

GitHub ee04ee89 817ac0c7

+1 -1
+1 -1
wrapper.nix
··· 238 238 wrapperArgs = [ 239 239 "--set-default" 240 240 "VIMINIT" 241 - "source ${config}/init.lua" 241 + "if getenv('NVIM_APPNAME') == '${pname}' | source ${config}/init.lua | endif" 242 242 243 243 "--set-default" 244 244 "NVIM_APPNAME"