Basically rebase

This commit is contained in:
Vladislav 2024-03-04 02:52:39 +01:00
parent c9122e89e3
commit 6e53b7028d
No known key found for this signature in database
GPG key ID: 07A1CCBD643CA257
3 changed files with 44 additions and 14 deletions

View file

@ -0,0 +1,10 @@
return { -- Copilot
'github/copilot.vim',
init = function()
vim.keymap.set('i', '<C-J>', 'copilot#Accept("\\<CR>")', {
expr = true,
replace_keycodes = false
})
vim.g.copilot_no_tab_map = true
end
}

View file

@ -0,0 +1,9 @@
return {
-- Managing crates.io dependencies --
'saecki/crates.nvim',
tag = 'stable',
event = { "BufRead Cargo.toml" },
config = function()
require('crates').setup()
end,
},