Skip to content

Commit 7b163c3

Browse files
committed
Update dot files
1 parent 0cfe5c3 commit 7b163c3

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

kitty/.config/kitty/kitty.conf

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
allow_remote_control true
22

3+
cursor_shape block
4+
35
font_family Operator Mono Lig Book
4-
bold_font Operator Mono Lig Book
6+
bold_font Operator Mono Book
57
italic_font Operator Mono Lig Book Italic
68
bold_italic_font Operator Mono Lig Book Italic
79

@@ -33,7 +35,7 @@ map alt+8 goto_tab 8
3335
map alt+9 goto_tab 9
3436
map alt+0 goto_tab 0
3537

36-
tab_bar_edge bottom
38+
tab_bar_edge bottom
3739
tab_bar_style separator
3840
tab_separator ""
3941
active_tab_background #62AEEF

nvim/.config/nvim/init.vim

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ Plug 'styled-components/vim-styled-components', { 'branch': 'main' }
2525

2626
Plug 'npxbr/glow.nvim', {'do': ':GlowInstall'}
2727

28-
"Plug 'vimsence/vimsence'
2928
Plug 'andweeb/presence.nvim'
3029
Plug 'kyazdani42/nvim-web-devicons'
3130
Plug 'akinsho/nvim-bufferline.lua'
3231
Plug 'hoob3rt/lualine.nvim'
32+
33+
Plug 'hashivim/vim-terraform'
3334
call plug#end()
3435

3536
if has('termguicolors')

nvim/.config/nvim/plugin/discord.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ require("presence"):setup({
44
buttons = false,
55
editing_text = "Editing %s",
66
workspace_text = "Workspace %s",
7-
blacklist = { 'socialblade' }
7+
blacklist = { 'tiktok', 'discord' }
88
})

scripts/bin/sb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
CONTEXT="SocialBlade"
2+
CONTEXT="gke_social-blade-website_us-east1_production"
33
NAMESPACE="default"
44
SOCIALBLADE_EPOCH="1202446179000"
55

scripts/bin/screenshot

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22
MAIN_FOLDER="$HOME/Pictures/Screenshots"
3-
SERVER_NAME="poggers"
43
BUCKET_NAME="cdn"
54
NAME=$(openssl rand -base64 8 | tr -dc '[:alnum:]\n\r')
65

@@ -16,7 +15,8 @@ if [ ! -e ${MAIN_FOLDER}/${NAME}.png ]; then exit 0; fi
1615
# osascript -e 'display notification "'"$NAME"'" with title "Uploading Screenshot"'
1716

1817
# Upload
19-
mc cp ${MAIN_FOLDER}/${NAME}.png ${SERVER_NAME}/${BUCKET_NAME}/${NAME}.png
18+
# mc cp ${MAIN_FOLDER}/${NAME}.png ${SERVER_NAME}/${BUCKET_NAME}/${NAME}.png
19+
rclone copy ${MAIN_FOLDER}/${NAME}.png r2:${BUCKET_NAME}
2020

2121
# File URL
2222
FILE_URL="https://t.pics/${NAME}.png"

zsh/.alias

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mc_edit() {
5858
alias dark="~/.config/kitty/switch_theme.sh dark"
5959
alias light="~/.config/kitty/switch_theme.sh light"
6060

61-
alias s="ssh"
61+
alias s="TERM=xterm-256color ssh"
6262
alias k="kubectl"
6363
alias kn="kubens"
6464
alias kc="kubectx"

zsh/.zshrc

+1
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ export LC_ALL=en_US.UTF-8
3434
export PATH="/Users/tim/bin/:$PATH"
3535
export PATH="/usr/local/opt/node@14/bin:$PATH"
3636
export PATH="/usr/local/opt/mysql-client/bin:$PATH"
37+
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"

0 commit comments

Comments
 (0)