Skip to content

Commit

Permalink
✨ Add rye configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
H1rono committed Feb 15, 2024
1 parent 9a7517e commit 6962bb4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ in
".config/mise/config.toml".source = ./config/mise/config.toml;
".config/sheldon/plugins.toml".source = ./config/sheldon/plugins.toml;
".config/git/gitmessage.txt".source = ./config/git/gitmessage.txt;
".rye/config.toml".source = ./rye/config.toml;
".tmux/plugins/tpm".source = pkgs.fetchFromGitHub {
owner = "tmux-plugins";
repo = "tpm";
Expand Down
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ config/nvim/init.vim .config/nvim/init.vim
config/mise/config.toml .config/mise/config.toml
config/sheldon/plugins.toml .config/sheldon/plugins.toml
config/git/gitmessage.txt .config/git/gitmessage.txt
rye/config.toml .rye/config.toml
"

case "$DOTFILES_STATUS" in
Expand Down
10 changes: 10 additions & 0 deletions rye/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# https://rye-up.com/guide/config/#config-file

[behavior]
# When set to true the `managed` flag is always assumed to be true.
force-rye-managed = false

# Enables global shims when set to `true`. This means that the installed
# `python` shim will resolve to a Rye managed toolchain even outside of
# virtual environments.
global-python = false

0 comments on commit 6962bb4

Please sign in to comment.