General configuration of the Software I use
Go to file
2024-11-28 16:12:55 +01:00
alacritty alacritty config update 2024-10-26 02:11:19 +02:00
nerd-fonts save all reference files as .url type 2024-08-27 14:57:29 +02:00
nvim save all reference files as .url type 2024-08-27 14:57:29 +02:00
PowerShell alacritty config update 2024-10-26 02:11:19 +02:00
util bugfix: force overwrite, create fonts directory 2024-11-28 16:12:55 +01:00
install_windows.ps1 unzip all nerd-font zip archives in parent directory 2024-11-28 14:15:50 +01:00
LICENSE Initial commit 2024-08-26 18:39:50 +02:00
README.md elaborate yet safe installation commands 2024-11-28 15:11:16 +01:00

Dotfiles

Welcome to my dotfiles repository! This repository contains the configuration files for various programs I use. Each program's configuration is organized into its own directory. Below is a brief overview of the programs and configurations included.

Structure

Prerequisites

While the installation of these dotfiles may not require the use of any external tools, it is still necessary to install all the main applications that are being configured, as seen in Structure, and other tools needed for development. These tools include the following for Windows Installs (Recommended using Chocolatey):

Note

For more information, simply see all util/ installation modules.

Installation

To use these configurations, clone this repository and copy or symlink the necessary files to your home directory or the appropriate configuration directories for each program. Instructions for each program are provided in their respective directories.

git clone https://github.com/Baipyrus/dotfiles.git

Alternatively, feel free to run the install script after cloning the repository or directly execute it from shell:

irm https://api.github.com/repos/Baipyrus/dotfiles/zipball -O "$env:TMP\dotfiles.zip"
Expand-Archive "$env:TMP\dotfiles.zip" -D "$env:TMP\dotfiles" -F
gci "$env:TMP\dotfiles\**\install_windows.ps1" | % {
    saps powershell.exe -Wait -Wo $_.DirectoryName -A "-Ex", "Bypass", "-F", $_.FullName
}