Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Supermaven is on by default, completion engine

+6 -4
+3 -1
nvim/lua/completion.lua
··· 19 19 ['<CR>'] = cmp.mapping.confirm({select = true}) -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. 20 20 }), 21 21 sources = cmp.config.sources({ 22 - {name = 'nvim_lsp'}, {name = 'vsnip'} -- For vsnip users. 22 + {name = 'nvim_lsp'}, 23 + {name = 'vsnip'}, -- For vsnip users. 24 + {name = 'supermaven'} 23 25 }, {{name = 'buffer'}}) 24 26 }) 25 27 require("cmp_git").setup()
+3 -3
nvim/lua/plugins.lua
··· 165 165 -- SuperMaven, another AI coding tool 166 166 { 167 167 "supermaven-inc/supermaven-nvim", 168 - opts = {keymaps = {accept_suggestion = "<C-f>"}}, 169 - lazy = true, 170 - cmd = "SupermavenActivate" 168 + opts = {keymaps = {accept_suggestion = "<C-f>"}} 169 + -- lazy = true, 170 + -- cmd = "SupermavenActivate" 171 171 }, -- Mason 172 172 -- { 173 173 -- "williamboman/mason.nvim",