mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2025-01-01 15:39:20 +00:00
18 lines
396 B
Julia
18 lines
396 B
Julia
ENV["JULIA_SHELL"] = "/usr/bin/fish"
|
|
ENV["JULIA_EDITOR"] = "nvim"
|
|
|
|
using Pkg: Pkg
|
|
Pkg.update()
|
|
|
|
project_path = Pkg.project().path
|
|
project_dir = split(project_path, "/")[end-1]
|
|
|
|
if !(project_dir in ("nvim-lspconfig",))
|
|
using OhMyREPL: OhMyREPL
|
|
using BenchmarkTools: @btime, @benchmark
|
|
using Revise: Revise, includet
|
|
|
|
if isfile("Project.toml")
|
|
Pkg.activate(".")
|
|
end
|
|
end
|