my dotz
2
fork

Configure Feed

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

lil tweaks for new jobby

j3s.sh be95cb27 5528f763

verified
+15 -3
+2 -2
.config/nvim/init.lua
··· 15 15 -- } 16 16 end) 17 17 18 - vim.cmd('colorscheme everforest') -- solarized, but green 19 - vim.cmd('set termguicolors') -- needed for truecolor support 18 + vim.cmd('colorscheme default') -- solarized, but green 19 + -- vim.cmd('set termguicolors') -- needed for truecolor support 20 20 vim.cmd('set mmp=2000') -- resolves https://github.com/vim/vim/issues/2049 21 21 22 22 ---- mappings
+1 -1
.jira.d/config.yml
··· 4 4 jira-deployment-type: cloud 5 5 authentication-method: api-token 6 6 7 - project: machines 7 + project: uptime 8 8 9 9 queries: 10 10 all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done
+9
.profile
··· 16 16 export _JAVA_AWT_WM_NONREPARENTING=1 17 17 18 18 ## DO stufffff 19 + if [ "$(uname)" = "Darwin" ]; then 20 + PATH=/opt/homebrew/bin:$PATH 21 + export CHEF_USER_NAME=jolson 22 + export KITCHEN_SSH_GATEWAY_USERNAME=jolson 23 + export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" 24 + export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" 25 + export JIRA_USERNAME="jolson@digitalocean.com" 26 + export JIRA_API_TOKEN="$(pa show jira-api-token | head -1)" 27 + fi 19 28 if [ "$(hostname)" = "zora" ]; then 20 29 alias jj='jj --config-toml "$(cat $HOME/.config/jj/work.toml)"' 21 30 export CHEF_USER_NAME=jolson
bin/prompt

This is a binary file and will not be displayed.

+3
bin/prompt.go
··· 58 58 if hostname == "rose" { 59 59 return "🌹" 60 60 } 61 + if hostname == "F67JYTFQT4" { 62 + return "🍎" 63 + } 61 64 return "💀" 62 65 } 63 66