This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Exit if not running interactively | |
| [[ $- != *i* ]] && return | |
| # History | |
| HISTCONTROL=ignoreboth | |
| HISTSIZE=1000 | |
| HISTFILESIZE=2000 | |
| shopt -s histappend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # === Package management (pacman) === | |
| alias update='sudo pacman -Syu' | |
| alias cleanup='sudo pacman -Rns $(pacman -Qtdq) 2>/dev/null; sudo pacman -Sc --noconfirm' | |
| # === Listing (eza replaces exa) === | |
| alias ls='eza --icons' | |
| alias la='eza -a --group-directories-first --icons' | |
| alias lx='eza -la --group-directories-first --icons' | |
| alias tree='eza --tree --icons' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Chocolatey | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
| # Remember install params on upgrade | |
| choco feature enable -n=useRememberedArgumentsForUpgrades | |
| # Base utilities | |
| choco install -y 7zip syncplay nomacs mpvio kdeconnect-kde |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Editor (built-in) | |
| "editor.fontFamily": "FiraCode Nerd Font", | |
| "editor.fontLigatures": "'cv02', 'cv25', 'cv28', 'cv30', 'cv32', 'ss02', 'ss03', 'ss04', 'ss05', 'ss07', 'ss08'", | |
| "editor.formatOnSave": true, | |
| "editor.wordWrap": "off", | |
| "editor.minimap.autohide": "mouseover", | |
| "editor.renderWhitespace": "boundary", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.bracketPairColorization.enabled": true, |