new: julia: startup.jl for python exe path

This commit is contained in:
qwjyh 2023-04-08 23:56:07 +09:00
parent 965dcf5045
commit 37e0256905
2 changed files with 7 additions and 0 deletions

View file

@ -71,4 +71,7 @@ New-Item -ItemType SymbolicLink -Path ~\.config\starship.toml -Target (Resolve-P
# wezterm
mkdir ~\.config\wezterm
New-Item -ItemType SymbolicLink -Path ~\.config\wezterm\wezterm.lua -Target (Resolve-Path .\dotfiles\wezterm\wezterm.lua) -Force
# julia
mkdir ~\.config\julia\config
New-Item -ItemType SymbolicLink -Path ~\.julia\config\startup.jl -Target (Resolve-Path .\dotfiles\startup_windows.jl) -Force

View file

@ -0,0 +1,4 @@
# julia startup file for windows
# use python installed with scoop instead of conda in windows
ENV["PYTHON"] = joinpath(homedir(), raw"scoop\apps\python\current\python.exe")