More settings

This commit is contained in:
Chris
2025-05-12 17:09:14 +01:00
parent 4975f4c459
commit f090b1a43e
3 changed files with 8 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ return {
args = { args = {
'--config=$HOME/.config/aider/aider.yaml', '--config=$HOME/.config/aider/aider.yaml',
'--no-auto-commits', '--no-auto-commits',
'--copy-paste', '--env-file=$(pwd)/.aider.env'
}, },
auto_reload = true, auto_reload = true,
win = { win = {

View File

@@ -18,7 +18,7 @@ return { -- Autoformat
-- Disable "format_on_save lsp_fallback" for languages that don't -- Disable "format_on_save lsp_fallback" for languages that don't
-- have a well standardized coding style. You can add additional -- have a well standardized coding style. You can add additional
-- languages here or re-enable it for the disabled ones. -- languages here or re-enable it for the disabled ones.
local disable_filetypes = { c = true, cpp = true } local disable_filetypes = { c = true, cpp = true, vue = true, js = true }
if disable_filetypes[vim.bo[bufnr].filetype] then if disable_filetypes[vim.bo[bufnr].filetype] then
return nil return nil
else else

View File

@@ -158,6 +158,12 @@ return {
disconnect = '', disconnect = '',
}, },
}, },
element_mappings = {
stacks = {
open = "<CR>",
expand = "o",
}
}
} }
-- Change breakpoint icons -- Change breakpoint icons