Add some additional tools and config settings

This commit is contained in:
Ben Kreeger 2025-08-13 14:40:42 -05:00
parent 47a2590023
commit d0fb1b8748
Signed by: kreeger
GPG Key ID: D5CF8683D4BE4B50
6 changed files with 36 additions and 6 deletions

15
.gitignore vendored
View File

@ -1,12 +1,17 @@
# tmux plugin cache
tmux/plugins/*
!tmux/plugins/tpm
# gnupg
gnupg/*
!gnupg/*.conf
!gnupg/sshcontrol
# lazygit
lazygit/state.*
# tmux plugin cache
tmux/plugins/*
!tmux/plugins/tpm
# zed
zed/prompts/
lazygit/state.*
# zsh
zsh/private.zsh

View File

@ -16,7 +16,7 @@ window-padding-x = 5,0
window-padding-y = 5,0
# Functionality
scrollback-limit = 10000
scrollback-limit = 100000
window-inherit-working-directory = true
copy-on-select = clipboard
shell-integration-features = no-cursor
@ -27,3 +27,4 @@ shell-integration-features = no-cursor
alpha-blending = linear
macos-icon = xray
macos-titlebar-style = transparent
keybind = shift+enter=text:\n

View File

@ -1,4 +1,5 @@
{
"avante.nvim": { "branch": "main", "commit": "4e0a8620b68a0de7a0ec67a0a7503863500f6d29" },
"barbar.nvim": { "branch": "master", "commit": "53b5a2f34b68875898f0531032fbf090e3952ad7" },
"blink.cmp": { "branch": "main", "commit": "9bcb14b43852a6f2bfd5ac9ef29cb5cf09b1b39b" },
"catppuccin": { "branch": "main", "commit": "fa42eb5e26819ef58884257d5ae95dd0552b9a66" },

View File

@ -0,0 +1,16 @@
return {
"yetone/avante.nvim",
event = "VeryLazy",
version = false,
---@module 'avante'
---@type avante.Config
opts = {
provider = "claude",
},
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
"nvim-telescope/telescope.nvim",
},
}

View File

@ -42,3 +42,7 @@ if [[ -x "$(command -v highlight)" ]]; then
alias ccat='highlight -O ansi --force'
alias clat='highlight -lO ansi --force'
fi
if [[ -x "$HOME/.claude/local/claude" ]]; then
alias claude="$HOME/.claude/local/claude"
fi

View File

@ -59,3 +59,6 @@ fi
if [[ -d "/opt/homebrew/share/google-cloud-sdk/bin" ]]; then
export PATH=/opt/homebrew/share/google-cloud-sdk/bin:$PATH
fi
if [[ -a "$HOME/.asdf/plugins/java/set-java-home.zsh" ]]; then
source $HOME/.asdf/plugins/java/set-java-home.zsh
fi