diff --git a/lua/plugins/aider.lua b/lua/plugins/aider.lua index 2c6ff4b..3d45eb4 100644 --- a/lua/plugins/aider.lua +++ b/lua/plugins/aider.lua @@ -41,7 +41,7 @@ return { args = { '--config=$HOME/.config/aider/aider.yaml', '--no-auto-commits', - '--copy-paste', + '--env-file=$(pwd)/.aider.env' }, auto_reload = true, win = { diff --git a/lua/plugins/conform.lua b/lua/plugins/conform.lua index 73ee7f7..fae1b44 100644 --- a/lua/plugins/conform.lua +++ b/lua/plugins/conform.lua @@ -18,7 +18,7 @@ return { -- Autoformat -- Disable "format_on_save lsp_fallback" for languages that don't -- have a well standardized coding style. You can add additional -- 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 return nil else diff --git a/lua/plugins/debug.lua b/lua/plugins/debug.lua index 4ff3046..38cbc07 100644 --- a/lua/plugins/debug.lua +++ b/lua/plugins/debug.lua @@ -158,6 +158,12 @@ return { disconnect = '', }, }, + element_mappings = { + stacks = { + open = "", + expand = "o", + } + } } -- Change breakpoint icons