Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edfloreshz/config
All of my configuration files live here.
https://github.com/edfloreshz/config
configuration shell-script
Last synced: about 2 months ago
JSON representation
All of my configuration files live here.
- Host: GitHub
- URL: https://github.com/edfloreshz/config
- Owner: edfloreshz
- Created: 2021-08-28T21:46:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T20:40:50.000Z (7 months ago)
- Last Synced: 2024-11-01T01:23:29.680Z (3 months ago)
- Topics: configuration, shell-script
- Language: Lua
- Homepage:
- Size: 17.3 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
# Configuration Repository
Configuration repositories for Arch Linux, KDE Plasma, Oh My Zsh, Vim, Tmux and Alacritty.
# Commands
Install Iosevka Term:
```bash
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/edfloreshz/config/main/linux/iosevka.sh | bash
```Place dotfiles:
```bash
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/edfloreshz/config/main/dotfiles/place.sh | bash
```Install Rust:
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash
```GPG:
1. [Generate GPG Keys](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification)```
// Remove existing signing key
git config --unset user.signingkey// Find long signing key
gpg --list-secret-keys --keyid-format=long// Add new signing key
git config user.signingkey SECRETKEYLONGID// Tell git to automatically sign every commit
git config commit.gpgsign true
```