Update Configs

This commit is contained in:
2024-07-20 11:47:52 -05:00
parent da6a88e63a
commit 060d736b24
10 changed files with 69 additions and 31 deletions

View File

@ -1,5 +1,5 @@
require("cloak").setup({
enabled = true,
enabled = false,
cloak_character = "*",
-- The applied highlight group (colors) on the cloaking, see `:h highlight`.
highlight_group = "Comment",

View File

@ -15,4 +15,3 @@ require("gib_nvim.treesitter")
require("gib_nvim.trouble")
require("gib_nvim.undotree")
require("gib_nvim.barbar")
require("gib_nvim.toggleterm")

View File

@ -65,7 +65,18 @@ require("lazy").setup({
{'saadparwaiz1/cmp_luasnip'},
{'rafamadriz/friendly-snippets'},
{
'github/copilot.vim'
--'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 = false, -- for cmp
})
end,
},
{
'laytan/cloak.nvim'
@ -116,7 +127,4 @@ require("lazy").setup({
},
version = '^1.0.0',
},
{
'akinsho/toggleterm.nvim', version = "*", config = true
},
})

View File

@ -56,6 +56,7 @@ local cmp_select = {behavior = cmp.SelectBehavior.Select}
cmp.setup({
sources = {
--{name = 'supermaven'},
{name = 'path'},
{name = 'nvim_lsp'},
{name = 'nvim_lua'},