Skip to content

Commit 55af72e

Browse files
committed
updates
1 parent 52c1d6d commit 55af72e

File tree

6 files changed

+22
-7
lines changed

6 files changed

+22
-7
lines changed

git/.gitconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
[core]
77
excludesfile = /Users/tim/.gitignore_global
88

9-
10-
insteadOf = https://github.com
9+
[url "ssh://[email protected]/"]
10+
insteadOf = https://github.com/
1111

1212
[init]
1313
defaultBranch = main

nvim/.config/nvim/init.lua

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ autocmd('TextYankPost', {
4848
end,
4949
})
5050

51-
5251
local onedark = require('onedark')
5352
onedark.setup {
5453
style = 'cool',

nvim/.config/nvim/lua/custom/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-
show_time = false,
7+
show_time = true,
88
})

nvim/.config/nvim/lua/custom/null_ls.lua

+11-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,17 @@ null_ls.setup({
3434
local prettier = require("prettier")
3535

3636
prettier.setup({
37-
bin = 'prettier',
37+
["null-ls"] = {
38+
condition = function()
39+
return prettier.config_exists({
40+
check_package_json = true,
41+
})
42+
end,
43+
runtime_condition = function(params)
44+
return true
45+
end,
46+
timeout = 5000,
47+
},
3848
filetypes = {
3949
"css",
4050
"graphql",

zsh/.alias

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ if [ $TERM = 'xterm-kitty' ]; then
1010

1111
autoload -Uz compinit
1212
compinit
13-
"/Applications/kitty.app/Contents/MacOS/kitty" + complete setup zsh | source /dev/stdin
13+
# "/Applications/kitty.app/Contents/MacOS/kitty" + complete setup zsh | source /dev/stdin
1414

1515
# alias kitty="/Applications/kitty.app/Contents/MacOS/kitty"
16-
alias ssh="kitty +kitten ssh"
16+
# alias ssh="kitty +kitten ssh"
1717
fi
1818

1919
vim() {

zsh/.zshrc

+6
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,9 @@ eval "$(fnm env --use-on-cd)"
5050
eval "$(op completion zsh)"; compdef _op op
5151

5252
autoload -U compinit && compinit
53+
54+
# The next line updates PATH for the Google Cloud SDK.
55+
if [ -f '/Users/tim/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/tim/google-cloud-sdk/path.zsh.inc'; fi
56+
57+
# The next line enables shell command completion for gcloud.
58+
if [ -f '/Users/tim/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/tim/google-cloud-sdk/completion.zsh.inc'; fi

0 commit comments

Comments
 (0)