Compare commits

..

No commits in common. "702687276a647241159703ec9a23f0da75d7fd59" and "5868d34775b573f4f16eae1a5ae1c7508972a661" have entirely different histories.

4 changed files with 7 additions and 20 deletions

View File

@ -1,10 +1,9 @@
-- Disable autocomplete on enter.
return {
"hrsh7th/nvim-cmp",
opts = function(_, opts)
local cmp = require("cmp")
opts.mapping = vim.tbl_deep_extend("force", opts.mapping, {
["<CR>"] = cmp.config.disable,
})
end,
"hrsh7th/nvim-cmp",
opts = function(_, opts)
local cmp = require("cmp")
opts.mapping = vim.tbl_deep_extend("force", opts.mapping, {
["<CR>"] = cmp.config.disable,
})
end,
}

View File

@ -1,4 +1,3 @@
-- Disable some unneeded plugins by default.
return {
{
"nvimdev/dashboard-nvim",

View File

@ -1,4 +1,3 @@
-- Disable inline hints by default.
return {
"neovim/nvim-lspconfig",
opts = {

View File

@ -1,10 +0,0 @@
-- Only show important notifications.
return {
{
"rcarriga/nvim-notify",
opts = {
level = 3,
render = "minimal",
},
},
}