my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prep dotfiles for digitalocean (yay)!

j3s f9891f7c d9d50538

+10 -50
+1 -1
.config/git/config
··· 18 18 ui = auto 19 19 [core] 20 20 excludesfile = ~/.config/git/gitignore 21 - editor = vim 21 + editor = nvim 22 22 pager = less 23 23 quotepath = false 24 24 autocrlf = input
+2 -4
.config/git/config-work
··· 1 1 [user] 2 - name = Jesse Olson 3 - email = jesse.olson@bestbuy.com 2 + name = Jes Olson 3 + email = jolson@digitalocean.com 4 4 [changelog] 5 5 format = * %s [%an] 6 - [sendemail] 7 - smtpserver = /usr/local/bin/msmtp
+1 -1
.config/sway/config
··· 24 24 ### Output configuration 25 25 # 26 26 # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) 27 - output * bg /home/j3s/Pictures/wallpapers/widelain.jpg fill 27 + # output * bg /home/j3s/Pictures/wallpapers/widelain.jpg fill 28 28 # 29 29 # Example configuration: 30 30 #
+3 -41
.env
··· 20 20 esac 21 21 } 22 22 23 - # needed for sway 24 - if test -z "${XDG_RUNTIME_DIR}"; then 25 - export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir 26 - if ! test -d "${XDG_RUNTIME_DIR}"; then 27 - mkdir "${XDG_RUNTIME_DIR}" 28 - chmod 0700 "${XDG_RUNTIME_DIR}" 29 - fi 30 - fi 31 - 32 23 if [ -z "${SSH_AGENT_PID}" ] 33 24 then 34 25 if ! [ -e /tmp/ssh-agent-$USER ] ··· 38 29 . /tmp/ssh-agent-$USER >/dev/null 39 30 fi 40 31 41 - # Make ^+L work on mksh 42 - if echo "$SHELL" | grep -q "mksh"; then 43 - bind '^L=clear-screen' 44 - export HISTFILE="$HOME/.mksh-history" 45 - fi 46 - 47 - # colorize ls 48 - if ls --version 2>&1 | grep -i gnu >/dev/null 49 - then 50 - alias ls='ls --color=auto ' 51 - elif ls --version 2>&1 | grep -i busybox >/dev/null 52 - then 53 - alias ls='ls --color=auto ' 54 - fi 55 - 56 32 # launch alacritty with no GPU support if on old thinkpad 57 33 if [ "$(hostname)" == 'nyx' ]; then 58 34 export LIBGL_ALWAYS_SOFTWARE=1 59 35 fi 60 36 61 37 if [ "$(hostname)" == 'nostromo' ]; then 62 - if ! pgrep syncthing > /dev/null; then 38 + if ! pgrep syncthing &> /dev/null; then 63 39 syncthing --no-browser > /dev/null & 64 40 fi 65 41 fi 66 42 67 - # bby 68 - if [ "$(uname -s)" == "Darwin" ]; then 69 - alias ls=gls 70 - alias df=gdf 71 - alias cdr='cd $(find ~/git/chef/cloud-roles ~/git/chef/site-cookbooks ~/git/chef/app-cookbooks ~/git/chef/dc-roles -type d -maxdepth 1 | selecta)' 72 - alias be='bundle exec' 73 - alias terraform='AWS_PROFILE=cgraph_prod /usr/local/bin/terraform $@' 74 - export CHEFUSER="jolson" 75 - export CHEF_ENV="browse_test" # just for .chef/config.rb 76 - export AWS_ENV="browse_test" # just for aws cli 77 - export SSHUSER="jolson" 78 - export SSHKEY="~/.ssh/id_rsa" 79 - export PASH_CLIP="pbcopy" 80 - source /usr/local/share/chruby/chruby.sh 81 - chruby ruby-2.6.6 82 - fi 43 + # chef stuff 44 + alias be='bundle exec'
.password-store/b/appleid.com.gpg

This is a binary file and will not be displayed.

.password-store/b/stratus-jobs-token.gpg

This is a binary file and will not be displayed.

.password-store/b/tuple.gpg

This is a binary file and will not be displayed.

+2 -1
.profile
··· 1 1 export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:~/go/bin:$PATH 2 2 export ENV=~/.env 3 - export EDITOR=vim 3 + export EDITOR=nvim 4 4 export LANG=en_US.UTF-8 5 + export GDK_BACKEND=wayland
-1
.xinitrc
··· 1 1 #!/bin/sh 2 2 3 - bud ~/Pictures/wallpapers 4 3 setxkbmap -layout us -option ctrl:nocaps 5 4 #exec sowm 6 5 #exec spectrwm
+1 -1
bin/vi
··· 1 1 #!/bin/sh 2 2 3 - vim "$@" 3 + nvim "$@"