-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nvim): disable indent related plugins
- Loading branch information
1 parent
f36c782
commit 7cd0149
Showing
3 changed files
with
55 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
return { | ||
"Exafunction/codeium.vim", | ||
event = "BufEnter", | ||
keys = function() | ||
return { | ||
{ | ||
"<C-a>", | ||
function() | ||
return vim.fn["codeium#Accept"]() | ||
end, | ||
mode = { "i" }, | ||
expr = true, | ||
}, | ||
{ | ||
"<C-j>", | ||
function() | ||
return vim.fn["codeium#CycleCompletions"](1) | ||
end, | ||
mode = { "i" }, | ||
expr = true, | ||
}, | ||
{ | ||
"<C-k>", | ||
function() | ||
return vim.fn["codeium#CycleCompletions"](-1) | ||
end, | ||
mode = { "i" }, | ||
expr = true, | ||
}, | ||
{ | ||
"<C-x>", | ||
function() | ||
return vim.fn["codeium#Clear"]() | ||
end, | ||
mode = { "i" }, | ||
expr = true, | ||
}, | ||
} | ||
end, | ||
-- "Exafunction/codeium.vim", | ||
-- event = "BufEnter", | ||
-- keys = function() | ||
-- return { | ||
-- { | ||
-- "<C-a>", | ||
-- function() | ||
-- return vim.fn["codeium#Accept"]() | ||
-- end, | ||
-- mode = { "i" }, | ||
-- expr = true, | ||
-- }, | ||
-- { | ||
-- "<C-j>", | ||
-- function() | ||
-- return vim.fn["codeium#CycleCompletions"](1) | ||
-- end, | ||
-- mode = { "i" }, | ||
-- expr = true, | ||
-- }, | ||
-- { | ||
-- "<C-k>", | ||
-- function() | ||
-- return vim.fn["codeium#CycleCompletions"](-1) | ||
-- end, | ||
-- mode = { "i" }, | ||
-- expr = true, | ||
-- }, | ||
-- { | ||
-- "<C-x>", | ||
-- function() | ||
-- return vim.fn["codeium#Clear"]() | ||
-- end, | ||
-- mode = { "i" }, | ||
-- expr = true, | ||
-- }, | ||
-- } | ||
-- end, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters