## GetDotfilesConfiguration `users.dotfiles.get(DotfileGetParams**kwargs) -> DotfileGetResponse` **post** `/gitpod.v1.UserService/GetDotfilesConfiguration` Gets the dotfiles for a user. Use this method to: - Retrieve user dotfiles ### Examples - Get dotfiles: Retrieves the dotfiles for the current user. ```yaml {} ``` ### Parameters - `empty: Optional[bool]` ### Returns - `class DotfileGetResponse: …` - `dotfiles_configuration: DotfilesConfiguration` - `repository: Optional[str]` The URL of a dotfiles repository. ### Example ```python import os from gitpod import Gitpod client = Gitpod( bearer_token=os.environ.get("GITPOD_API_KEY"), # This is the default and can be omitted ) dotfile = client.users.dotfiles.get() print(dotfile.dotfiles_configuration) ``` #### Response ```json { "dotfilesConfiguration": { "repository": "https://example.com" } } ```