lil tweaks for new jobby
Jes Olson j3s@c3f.net
Tue, 05 Nov 2024 17:40:18 -0500
5 files changed,
15 insertions(+),
3 deletions(-)
M
.config/nvim/init.lua
→
.config/nvim/init.lua
@@ -15,8 +15,8 @@ -- }}
-- } end) -vim.cmd('colorscheme everforest') -- solarized, but green -vim.cmd('set termguicolors') -- needed for truecolor support +vim.cmd('colorscheme default') -- solarized, but green +-- vim.cmd('set termguicolors') -- needed for truecolor support vim.cmd('set mmp=2000') -- resolves https://github.com/vim/vim/issues/2049 ---- mappings
M
.jira.d/config.yml
→
.jira.d/config.yml
@@ -4,7 +4,7 @@ login: jolson@digitalocean.com
jira-deployment-type: cloud authentication-method: api-token -project: machines +project: uptime queries: all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done
M
.profile
→
.profile
@@ -16,6 +16,15 @@ # - arduino ide
export _JAVA_AWT_WM_NONREPARENTING=1 ## DO stufffff +if [ "$(uname)" = "Darwin" ]; then + PATH=/opt/homebrew/bin:$PATH + export CHEF_USER_NAME=jolson + export KITCHEN_SSH_GATEWAY_USERNAME=jolson + export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" + export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" + export JIRA_USERNAME="jolson@digitalocean.com" + export JIRA_API_TOKEN="$(pa show jira-api-token | head -1)" +fi if [ "$(hostname)" = "zora" ]; then alias jj='jj --config-toml "$(cat $HOME/.config/jj/work.toml)"' export CHEF_USER_NAME=jolson
M
bin/prompt.go
→
bin/prompt.go
@@ -58,6 +58,9 @@ }
if hostname == "rose" { return "🌹" } + if hostname == "F67JYTFQT4" { + return "🍎" + } return "💀" }