Compare commits
7 Commits
4ae9a77eb2
...
c34d59f97a
Author | SHA1 | Date | |
---|---|---|---|
c34d59f97a | |||
9aca15f599 | |||
138bd084bc | |||
7b532cc313 | |||
c67eedaa1c | |||
8e297a4d21 | |||
e5fd2bd961 |
@@ -1,7 +1,7 @@
|
||||
[user]
|
||||
name = Noah Knegt
|
||||
email = git@noahknegt.com
|
||||
singingkey = /home/noahk/.ssh/id_ed25519.pub
|
||||
signingkey = /home/noahk/.ssh/id_ed25519.pub
|
||||
[gpg]
|
||||
format = ssh
|
||||
[commit]
|
||||
|
7
.config/noisetorch/config.toml
Normal file
7
.config/noisetorch/config.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
Threshold = 95
|
||||
DisplayMonitorSources = false
|
||||
EnableUpdates = true
|
||||
FilterInput = true
|
||||
FilterOutput = false
|
||||
LastUsedInput = "alsa_input.usb-RODE_Microphones_RODE_AI-1_380ADC21-00.mono-fallback"
|
||||
LastUsedOutput = ""
|
@@ -5,6 +5,7 @@
|
||||
rebase = true
|
||||
[format]
|
||||
signOff = true
|
||||
[fetch]
|
||||
prune = true
|
||||
[core]
|
||||
editor = nvim
|
||||
|
@@ -2,9 +2,11 @@
|
||||
alias zshrc="nvim ~/.zshrc && source ~/.zshrc"
|
||||
|
||||
# Aliases for common use
|
||||
alias ls='exa'
|
||||
alias ll='exa -lh'
|
||||
alias lal='exa -alh'
|
||||
alias ls='eza'
|
||||
alias ll='eza -lh'
|
||||
alias lal='eza -alh'
|
||||
|
||||
alias cat='bat'
|
||||
|
||||
# Aliases for editor
|
||||
alias vim='nvim'
|
||||
|
11
.zshenv
11
.zshenv
@@ -1,8 +1,15 @@
|
||||
# Rust / Cargo
|
||||
. "$HOME/.cargo/env"
|
||||
|
||||
# ENV vars
|
||||
# Cloudflare
|
||||
export CLOUDFLARE_API_TOKEN='A06KFcMRIZVzNnjNrsqH8UAvjeTOLPI2lY8Dbwfm'
|
||||
|
||||
# TF ENV VARS
|
||||
# Terraform
|
||||
export TF_VAR_CLOUDFLARE_API_TOKEN=$CLOUDFLARE_API_TOKEN
|
||||
export TF_CLOUD_ORGANIZATION=noah-knegt
|
||||
export TF_WORKSPACE=cloudflare-dns
|
||||
export TF_TOKEN_app_terraform_io=h7ClU6Ez34K9MA.atlasv1.EL4My9EWJAJJygXIGiiNiHDTBrc9Q7bizVy2E2BSaugPXA5f7yuHxgZrYsmou99JGSQ
|
||||
|
||||
# Drone CI - for the drone CLI
|
||||
export DRONE_SERVER=https://drone.noahknegt.com
|
||||
export DRONE_TOKEN=l1lG6o22fStd81PJ3VTtwa8l2crd4h5R
|
||||
|
28
README.md
Normal file
28
README.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# Dotfiles repository
|
||||
|
||||
This repo contains dotfiles that are used to configure applications on the system.
|
||||
|
||||
## Requirements
|
||||
|
||||
In order to properly use this repo the following applications are needed:
|
||||
|
||||
- Git
|
||||
- Stow
|
||||
|
||||
## Usage
|
||||
|
||||
First clone the repository to any location on the system with the following command.
|
||||
This assumes that ssh is already properly configured on your system.
|
||||
|
||||
```bash
|
||||
git clone ssh://git@git.noahknegt.com/noah.knegt/dotfiles.git
|
||||
```
|
||||
|
||||
Then run stow in the cloned directory.
|
||||
|
||||
```bash
|
||||
stow -t ~ .
|
||||
```
|
||||
|
||||
This will create symlinks to the files in the cloned repo in the home directory.
|
||||
If this command fails for any reason try `stow` with the `--adopt` option.
|
Reference in New Issue
Block a user