Skip to content

Commit 8ea88be

Browse files
committed
Updated for new MacBook
1 parent 7ee244e commit 8ea88be

File tree

7 files changed

+21
-10
lines changed

7 files changed

+21
-10
lines changed

git/.gitconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[user]
2-
signingkey = C8FC3C8FEF3119C8
2+
signingkey = FD1E04B6BD512AD9
33
name = Timothy Cole
44
55

install-mac

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ export STOW_FOLDERS="kitty,nvim,scripts,skhd,tmux,zsh";
44
for folder in $(echo $STOW_FOLDERS | sed "s/,/ /g")
55
do
66
stow -D $folder
7-
stow $folder
7+
stow -t $HOME $folder
88
done
9+
10+
stow -t $HOME git

kitty/.config/kitty/kitty.conf

+1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ tab_bar_margin_width 1.5
4646
repaint_delay 8
4747
input_delay 2
4848
sync_to_monitor yes
49+
enable_audio_bell no
4950

5051
include colors.conf

nvim/.config/nvim/lua/custom/tabs.lua

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
require("bufferline").setup({
1+
local bufferline = require('bufferline')
2+
3+
bufferline.setup({
4+
highlights = {
5+
fill = { bg = "#161d25" },
6+
},
27
options = {
38
diagnostics = "nvim_lsp",
49
always_show_bufferline = true,
5-
buffer_close_icon = ''
10+
modified_icon = "",
11+
tab_size = 22,
612
},
713
})
814

nvim/.config/nvim/plugin/packer_compiled.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,14 @@ _G.packer_plugins = {
231231
}
232232

233233
time([[Defining packer_plugins]], false)
234-
-- Config for: nvim-cmp
235-
time([[Config for nvim-cmp]], true)
236-
require('custom.lsp')
237-
time([[Config for nvim-cmp]], false)
238234
-- Config for: nvim-autopairs
239235
time([[Config for nvim-autopairs]], true)
240236
try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
241237
time([[Config for nvim-autopairs]], false)
238+
-- Config for: nvim-cmp
239+
time([[Config for nvim-cmp]], true)
240+
require('custom.lsp')
241+
time([[Config for nvim-cmp]], false)
242242
-- Config for: Comment.nvim
243243
time([[Config for Comment.nvim]], true)
244244
try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0", "config", "Comment.nvim")

tmux/.tmux.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set -g default-terminal "xterm-256color-italic"
1+
set -g default-terminal "xterm-kitty"
22
set -g mouse on
33

44
set -g status-left "#[fg=white,bg=#1D2632] #S "

zsh/.zshrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ ZSH_THEME="igeek-modest"
55

66
plugins=(
77
git
8-
golang
98
dotenv
109
node
1110
sudo
@@ -30,6 +29,7 @@ source ~/.alias
3029

3130
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
3231
export LC_ALL=en_US.UTF-8
32+
export GPG_TTY=$(tty)
3333

3434
export PATH="/Users/tim/bin/:$PATH"
3535
export PATH="/usr/local/opt/node@14/bin:$PATH"
@@ -45,3 +45,5 @@ export PATH="$BUN_INSTALL/bin:$PATH"
4545

4646
eval "$(fnm env --use-on-cd)"
4747
eval "$(op completion zsh)"; compdef _op op
48+
49+
autoload -U compinit && compinit

0 commit comments

Comments
 (0)