Basically rebase
This commit is contained in:
parent
c9122e89e3
commit
6e53b7028d
3 changed files with 44 additions and 14 deletions
10
lua/custom/plugins/copilot.lua
Normal file
10
lua/custom/plugins/copilot.lua
Normal 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
|
||||
}
|
||||
9
lua/custom/plugins/rust.lua
Normal file
9
lua/custom/plugins/rust.lua
Normal 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,
|
||||
},
|
||||
Loading…
Add table
Add a link
Reference in a new issue