astro-nvim-v3 - modified folder structure

This commit is contained in:
huyjaky
2025-01-19 12:00:28 +07:00
parent fe00af8147
commit 3c4feebbcc
21 changed files with 363 additions and 443 deletions

View File

@@ -122,7 +122,7 @@ return {
-- ["<C-f>"] = cmp.mapping(function(fallback)
-- -- Check if Copilot is suggesting something
-- if vim.fn["copilot#Accept"]() ~= "" then
-- vim.api.nvim_set_keymap("i", "<C-f>", "copilot#Accept('')", { expr = true, silent = true })
-- vim.api.nvim_set_keymap("i", "<C-f>", 'copilot#Accept("\\<CR>")', { expr = true, silent = true })
-- else
-- fallback() -- If no suggestion, fallback to default behavior
-- end