change back to copilot
This commit is contained in:
parent
884b7c57fc
commit
efc8587724
|
@ -1,35 +1,35 @@
|
||||||
-- Copilot
|
-- Copilot
|
||||||
-- return {
|
|
||||||
-- "zbirenbaum/copilot.lua",
|
|
||||||
-- cmd = "Copilot",
|
|
||||||
-- event = "InsertEnter",
|
|
||||||
-- opts = {
|
|
||||||
-- suggestion = {
|
|
||||||
-- auto_trigger = true,
|
|
||||||
-- auto_refresh = true,
|
|
||||||
-- keymap = {
|
|
||||||
-- accept = "<leader><Tab>",
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- filetypes = {
|
|
||||||
-- markdown = true,
|
|
||||||
-- tex = true,
|
|
||||||
-- }
|
|
||||||
-- }
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- Supermaven
|
|
||||||
return {
|
return {
|
||||||
"supermaven-inc/supermaven-nvim",
|
"zbirenbaum/copilot.lua",
|
||||||
|
cmd = "Copilot",
|
||||||
|
event = "InsertEnter",
|
||||||
opts = {
|
opts = {
|
||||||
keymaps = {
|
suggestion = {
|
||||||
accept_suggestion = "<leader><tab>",
|
auto_trigger = true,
|
||||||
accept_word = "<C-j>",
|
auto_refresh = true,
|
||||||
|
keymap = {
|
||||||
|
accept = "<leader><Tab>",
|
||||||
},
|
},
|
||||||
disable_keymaps = false, -- disables built in keymaps for more manual control
|
},
|
||||||
|
filetypes = {
|
||||||
|
markdown = true,
|
||||||
|
tex = true,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Supermaven
|
||||||
|
-- return {
|
||||||
|
-- "supermaven-inc/supermaven-nvim",
|
||||||
|
-- opts = {
|
||||||
|
-- keymaps = {
|
||||||
|
-- accept_suggestion = "<leader><tab>",
|
||||||
|
-- accept_word = "<C-j>",
|
||||||
|
-- },
|
||||||
|
-- disable_keymaps = false, -- disables built in keymaps for more manual control
|
||||||
|
-- }
|
||||||
|
-- }
|
||||||
|
|
||||||
-- Neocodium
|
-- Neocodium
|
||||||
-- return {
|
-- return {
|
||||||
-- "monkoose/neocodeium",
|
-- "monkoose/neocodeium",
|
||||||
|
|
|
@ -26,9 +26,9 @@ in {
|
||||||
programs.virt-manager.enable = true;
|
programs.virt-manager.enable = true;
|
||||||
users.users.user.extraGroups = [ "libvirtd" ];
|
users.users.user.extraGroups = [ "libvirtd" ];
|
||||||
|
|
||||||
# services.ollama = {
|
services.ollama = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# };
|
};
|
||||||
|
|
||||||
# hardware.graphics.extraPackages = with pkgs; [
|
# hardware.graphics.extraPackages = with pkgs; [
|
||||||
# rocmPackages.clr.icd
|
# rocmPackages.clr.icd
|
||||||
|
|
Loading…
Reference in New Issue