restructure folder
This commit is contained in:
parent
db10a56ae6
commit
a2ed2a85b0
7 changed files with 61 additions and 69 deletions
20
lua/custom/plugins/claude-code.lua
Normal file
20
lua/custom/plugins/claude-code.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
'greggh/claude-code.nvim',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim', -- Required for git operations
|
||||
},
|
||||
config = function()
|
||||
require('claude-code').setup {
|
||||
window = {
|
||||
position = 'vertical',
|
||||
split_ratio = 0.35,
|
||||
},
|
||||
refresh = {
|
||||
enable = true, -- Enable file change detection
|
||||
updatetime = 100, -- updatetime when Claude Code is active (milliseconds)
|
||||
timer_interval = 1000, -- How often to check for file changes (milliseconds)
|
||||
show_notifications = true, -- Show notification when files are reloaded
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue