Compare commits

...

3 commits

Author SHA1 Message Date
ad68bf85c8
install codecompanion 2025-04-04 14:07:25 -04:00
85738cb47a
use copilot in neovim 2025-04-04 14:07:25 -04:00
994d1154a4
don't show tree when opening neovim 2025-04-03 10:52:18 -04:00

View file

@ -260,7 +260,20 @@
plugins.nvim-tree = {
enable = true;
disableNetrw = true;
openOnSetup = true;
openOnSetup = false;
};
plugins.copilot-lua.enable = true;
plugins.copilot-cmp.enable = true;
plugins.codecompanion = {
enable = true;
settings = {
strategies = {
agent.adapter = "copilot";
chat.adapter = "copilot";
inline.adapter = "copilot";
};
};
};
};
}