Skip to content

Commit

Permalink
2 space indent
Browse files Browse the repository at this point in the history
  • Loading branch information
psm14 committed Jan 20, 2025
1 parent dad5837 commit f53496f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim):

```lua
{
'psm14/toggleterm-aider',
dependencies = {
'akinsho/toggleterm.nvim',
'nvim-tree/nvim-tree.lua', -- optional
},
config = function()
require('toggleterm-aider').setup()
end
'psm14/toggleterm-aider',
dependencies = {
'akinsho/toggleterm.nvim',
'nvim-tree/nvim-tree.lua', -- optional
},
config = function()
require('toggleterm-aider').setup()
end
}
```

Expand All @@ -39,13 +39,13 @@ The plugin works out of the box with sensible defaults, but can be customized wi

```lua
require('toggleterm-aider').setup({
-- Custom aider CLI arguments
args = "--no-pretty --no-auto-commit --no-gitignore --watch-files",
-- Custom keymaps (defaults shown below)
toggle_key = '<leader>as', -- Toggle aider terminal
add_key = '<leader>aa', -- Add file to aider
drop_key = '<leader>ad' -- Drop file from aider
-- Custom aider CLI arguments
args = "--no-pretty --no-auto-commit --no-gitignore --watch-files",

-- Custom keymaps (defaults shown below)
toggle_key = '<leader>as', -- Toggle aider terminal
add_key = '<leader>aa', -- Add file to aider
drop_key = '<leader>ad' -- Drop file from aider
})
```

Expand Down

0 comments on commit f53496f

Please sign in to comment.