This commit is contained in:
asep komarudin 2023-06-22 13:51:39 +07:00
parent f36ee6fbb2
commit 5addd87e7a
2 changed files with 19 additions and 18 deletions

View file

@ -10,6 +10,7 @@
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" }, "cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
"code_runner.nvim": { "branch": "main", "commit": "01ce754d162170a3fcf372ad9f188a65c010f235" }, "code_runner.nvim": { "branch": "main", "commit": "01ce754d162170a3fcf372ad9f188a65c010f235" },
"codeium.vim": { "branch": "main", "commit": "1715a11fe4882205119810371bb57b5e48509486" },
"dressing.nvim": { "branch": "master", "commit": "5fb5cce0cbfcedeadbcee43e5674e8c9a9f28d4a" }, "dressing.nvim": { "branch": "master", "commit": "5fb5cce0cbfcedeadbcee43e5674e8c9a9f28d4a" },
"fidget.nvim": { "branch": "main", "commit": "0ba1e16d07627532b6cae915cc992ecac249fb97" }, "fidget.nvim": { "branch": "main", "commit": "0ba1e16d07627532b6cae915cc992ecac249fb97" },
"friendly-snippets": { "branch": "main", "commit": "5749f093759c29e3694053d048ceb940fe12c3d3" }, "friendly-snippets": { "branch": "main", "commit": "5749f093759c29e3694053d048ceb940fe12c3d3" },

View file

@ -1,21 +1,21 @@
vim.g.codeium_disable_bindings = 1 vim.g.codeium_disable_bindings = 1
return { return {
-- "Exafunction/codeium.vim", "Exafunction/codeium.vim",
-- enabled = true, enabled = true,
-- event = "InsertEnter", event = "InsertEnter",
-- config = function() config = function()
-- -- Change '<C-g>' here to any keycode you like. -- Change '<C-g>' here to any keycode you like.
-- vim.keymap.set("i", "<C-g>", function() vim.keymap.set("i", "<C-g>", function()
-- return vim.fn["codeium#Accept"]() return vim.fn["codeium#Accept"]()
-- end, { expr = true }) end, { expr = true })
-- vim.keymap.set("i", "<c-;>", function() vim.keymap.set("i", "<c-;>", function()
-- return vim.fn["codeium#CycleCompletions"](1) return vim.fn["codeium#CycleCompletions"](1)
-- end, { expr = true }) end, { expr = true })
-- vim.keymap.set("i", "<c-,>", function() vim.keymap.set("i", "<c-,>", function()
-- return vim.fn["codeium#CycleCompletions"](-1) return vim.fn["codeium#CycleCompletions"](-1)
-- end, { expr = true }) end, { expr = true })
-- vim.keymap.set("i", "<c-x>", function() vim.keymap.set("i", "<c-x>", function()
-- return vim.fn["codeium#Clear"]() return vim.fn["codeium#Clear"]()
-- end, { expr = true }) end, { expr = true })
-- end, end,
} }