This commit is contained in:
2026-03-19 16:14:24 -05:00
parent 24d5bcc047
commit 792a99bf0f
15 changed files with 242 additions and 145 deletions

15
lua/_claude.lua Normal file
View File

@@ -0,0 +1,15 @@
plugin({
"greggh/claude-code.nvim",
dependencies = {
"nvim-lua/plenary.nvim", -- Required for git operations
},
config = function()
require("claude-code").setup({
shell = {
separator = ";", -- Command separator used in shell commands
pushd_cmd = "enter", -- Command to push directory onto stack (e.g., 'pushd' for bash/zsh, 'enter' for nushell)
popd_cmd = "exit", -- Command to pop directory from stack (e.g., 'popd' for bash/zsh, 'exit' for nushell)
},
})
end,
})