diff --git a/dotfiles/config/Code/User/settings.json b/dotfiles/config/Code/User/settings.json index 6c9294c..d791bea 100644 --- a/dotfiles/config/Code/User/settings.json +++ b/dotfiles/config/Code/User/settings.json @@ -3,5 +3,13 @@ "telemetry.telemetryLevel": "off", "dotfiles.repository": "matir/skel", "dotfiles.targetPath": "~/.skel", - "remote.defaultExtensionsIfInstalledLocally": [] + "remote.defaultExtensionsIfInstalledLocally": [], + "mise.configureExtensionsAutomatically": true, + "kilo-code.debug": false, + "kilo-code.allowedCommands": [ + "git log", + "git diff", + "git show" + ], + "kilo-code.deniedCommands": [] } diff --git a/dotfiles/config/mise/config.toml b/dotfiles/config/mise/config.toml index cd519a6..81ca773 100644 --- a/dotfiles/config/mise/config.toml +++ b/dotfiles/config/mise/config.toml @@ -1,5 +1,6 @@ [settings] experimental = true +python_venv_auto_create = true [settings.pipx] uvx = true @@ -14,3 +15,6 @@ uv = "latest" [hooks] postinstall = "mise sync python --uv" + +[env] +UV_PROJECT_ENVIRONMENT = { value='{% if env.PROJECT_SLUG %}{{ env.HOME}}/.cache/uv-venvs/{{ env.PROJECT_SLUG }}{% endif %}', tools = true }