{"id":15202881,"url":"https://github.com/mkabumattar/powershell-profile","last_synced_at":"2026-03-08T19:31:17.346Z","repository":{"id":238911423,"uuid":"797945470","full_name":"MKAbuMattar/powershell-profile","owner":"MKAbuMattar","description":"Welcome to my PowerShell profile! Here, you'll find a curated collection of functions, aliases, and settings tailored to enhance my PowerShell workflow, making it both more enjoyable and productive.","archived":false,"fork":false,"pushed_at":"2025-03-04T19:47:21.000Z","size":150,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T20:19:28.257Z","etag":null,"topics":["dotfiles-windows","powershell-profile","powershell-script"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MKAbuMattar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-08T19:32:23.000Z","updated_at":"2025-03-04T19:47:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"fefb43f5-bb74-4ce2-b102-a05a37365214","html_url":"https://github.com/MKAbuMattar/powershell-profile","commit_stats":{"total_commits":116,"total_committers":1,"mean_commits":116.0,"dds":0.0,"last_synced_commit":"fc17eede9830ed0ab5b551469e3aca15719a0b1e"},"previous_names":["mkabumattar/powershell-profile"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKAbuMattar%2Fpowershell-profile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKAbuMattar%2Fpowershell-profile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKAbuMattar%2Fpowershell-profile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKAbuMattar%2Fpowershell-profile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MKAbuMattar","download_url":"https://codeload.github.com/MKAbuMattar/powershell-profile/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241982490,"owners_count":20052530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotfiles-windows","powershell-profile","powershell-script"],"created_at":"2024-09-28T04:06:59.784Z","updated_at":"2025-12-01T19:06:02.043Z","avatar_url":"https://github.com/MKAbuMattar.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My PowerShell Profile\n\nWelcome to my PowerShell profile! Here, you'll find a curated collection of functions, aliases, and settings tailored to enhance my PowerShell workflow, making it both more enjoyable and productive.\n\n## Table of Contents\n\n- [Quick Setup (Windows)](#quick-setup-windows)\n- [The Profile Architecture](#the-profile-architecture)\n- [Features](#features)\n- [Modules](#modules)\n- [Contributing](#contributing)\n\n## Quick Setup (Windows)\n\nJumpstart your PowerShell experience with just one command. This script will download and execute `setup.ps1`, which initializes the profile, installs necessary modules, and configures basic settings.\n\n```powershell\nirm \"https://raw.githubusercontent.com/MKAbuMattar/powershell-profile/main/setup.ps1\" | iex\n```\n\n## The Profile Architecture\n\nThis PowerShell profile is organized into several modules, each with its own specific functionality. This modular design allows for better organization, easier maintenance, and the ability to load only the necessary components.\n\n## Features\n\nThis PowerShell profile script includes:\n\n- **UTF-8 Encoding**: Ensures consistent character display by setting console encoding to UTF-8.\n- **Comprehensive Module Management**: Automatically checks for and installs essential PowerShell modules such as Terminal-Icons, PowerShellGet, CompletionPredictor, PSReadLine, and Posh-Git to enrich the shell experience.\n- **Enhanced PSReadLine Configuration**: Customizes PSReadLine options and key handlers for a more intuitive and powerful command-line editing experience (e.g., history search, custom keybindings).\n- **Custom Modular Functionality**: Imports a suite of custom modules for specialized tasks including environment management, logging, Starship prompt integration, automated updates, and various utilities. See the [Modules](#modules) section for details.\n- **Dynamic Starship Prompt**: Integrates the Starship cross-shell prompt, providing a rich, context-aware, and customizable command-line interface.\n- **Chocolatey Integration**: Automatically sets up and imports the Chocolatey profile if Chocolatey package manager is installed, streamlining software management.\n- **Automated Profile and PowerShell Updates**: Includes functions to automatically update the profile itself and the PowerShell version, keeping the environment current (controlled by global variables).\n- **Intelligent Default Editor Configuration**: Sets the default text editor by detecting the availability of preferred editors like Neovim (nvim), Vim (vi), VS Code (code), or falling back to Notepad.\n- **FastFetch System Information**: Optionally runs FastFetch (if available) on startup to display a quick summary of system information.\n\n## Modules\n\nBelow is a list of the available modules. Click on a module name to view its detailed documentation.\n\n- [Directory Module](./Module/Directory/README.md)\n- [Docs Module](./Module/Docs/README.md)\n- [Environment Module](./Module/Environment/README.md)\n- [Logging Module](./Module/Logging/README.md)\n- [Network Module](./Module/Network/README.md)\n- [Plugins Module](./Module/Plugins/README.md)\n- [Process Module](./Module/Process/README.md)\n- [Starship Module](./Module/Starship/README.md)\n- [Update Module](./Module/Update/README.md)\n- [Utility Module](./Module/Utility/README.md)\n\n## Contributing\n\nContributions are welcome! Please consider creating a [CONTRIBUTING](.github/CONTRIBUTING.md) file with guidelines for how others can contribute to this project.\n\n## **License:**\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkabumattar%2Fpowershell-profile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkabumattar%2Fpowershell-profile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkabumattar%2Fpowershell-profile/lists"}