mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 14:18:36 +02:00
supermaven reconfigured for CA added
This commit is contained in:
parent
5a529c5784
commit
7bcaab35e4
2 changed files with 50 additions and 28 deletions
21
init.lua
21
init.lua
|
@ -148,6 +148,26 @@ require('lazy').setup({
|
|||
--
|
||||
-- Use `opts = {}` to force a plugin to be loaded.
|
||||
--
|
||||
{
|
||||
'supermaven-inc/supermaven-nvim',
|
||||
config = function()
|
||||
require('supermaven-nvim').setup {
|
||||
keymaps = {
|
||||
accept_suggestion = '<C-a>',
|
||||
clear_suggestion = '<C-]>',
|
||||
accept_word = '<C-j>',
|
||||
},
|
||||
ignore_filetypes = { cpp = true },
|
||||
color = {
|
||||
suggestion_color = '#ffffff',
|
||||
cterm = 244,
|
||||
},
|
||||
log_level = 'info', -- set to "off" to disable logging completely
|
||||
disable_inline_completion = false, -- disables inline completion for use with cmp
|
||||
disable_keymaps = false, -- disables built in keymaps for more manual control
|
||||
}
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
'quarto-dev/quarto-nvim',
|
||||
|
@ -711,6 +731,7 @@ require('lazy').setup({
|
|||
-- set group index to 0 to skip loading LuaLS completions as lazydev recommends it
|
||||
group_index = 0,
|
||||
},
|
||||
{ name = 'supermaven' },
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'luasnip' },
|
||||
{ name = 'path' },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue