Add stuff to install script & clean up lsp config

This commit is contained in:
2025-12-22 11:47:38 -06:00
parent fba92951f9
commit c0ba11768a
3 changed files with 30 additions and 19 deletions

View File

@@ -39,7 +39,7 @@ return {
{ name = 'buffer' },
{ name = 'luasnip_choice' },
--{ name = 'copilot' },
{ name = 'supermaven' },
--{ name = 'supermaven' },
{ name = 'nvim_lsp_document_symbol' },
{ name = 'nvim_lsp_signature_help' },
{ name = 'nvim_lua' },
@@ -69,9 +69,9 @@ return {
menu = 50,
abbr = 50,
},
symbol_map = {
Supermaven = '',
},
--symbol_map = {
--Supermaven = '',
--},
ellipsis_char = '...',
show_labelDetails = true,
before = function(entry, vim_item)
@@ -225,22 +225,25 @@ return {
version = 'v2.*',
build = 'make install_jsregexp'
},
--{
--'github/copilot.vim',
--},
{
'supermaven-inc/supermaven-nvim',
config = function()
require'supermaven-nvim'.setup({
keymaps = {
accept_suggestion = '<Tab>',
clear_suggestion = '<C-]>',
accept_word = '<C-.>',
},
disable_inline_completion = true,
})
end,
'github/copilot.vim',
--config = function ()
--vim.g.copilot_no_tab_map = true
--end
},
--{
--'supermaven-inc/supermaven-nvim',
--config = function()
--require'supermaven-nvim'.setup({
--keymaps = {
--accept_suggestion = '<Tab>',
--clear_suggestion = '<C-]>',
--accept_word = '<C-.>',
--},
--disable_inline_completion = true,
--})
--end,
--},
{
'windwp/nvim-autopairs',
event = 'InsertEnter',