disable ghost text in nvim

This commit is contained in:
insects 2024-07-23 16:44:32 +02:00
parent c50a5ce360
commit 1a87b4c161
2 changed files with 45 additions and 33 deletions

View file

@ -7,37 +7,40 @@ end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath) vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require("lazy").setup({ require("lazy").setup({
spec = { spec = {
-- add LazyVim and import its plugins -- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" }, { "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- import any extras modules here -- import any extras modules here
{ import = "lazyvim.plugins.extras.editor.aerial" }, { import = "lazyvim.plugins.extras.editor.aerial" },
{ import = "lazyvim.plugins.extras.editor.leap" }, { import = "lazyvim.plugins.extras.editor.leap" },
{ import = "lazyvim.plugins.extras.lang.rust" }, { import = "lazyvim.plugins.extras.lang.typescript" },
{ import = "lazyvim.plugins.extras.lang.haskell" }, { import = "lazyvim.plugins.extras.lang.svelte" },
{ import = "lazyvim.plugins.extras.formatting.prettier" }, { import = "lazyvim.plugins.extras.lang.rust" },
-- import/override with your plugins { import = "lazyvim.plugins.extras.lang.haskell" },
{ import = "plugins" }, { import = "lazyvim.plugins.extras.formatting.prettier" },
}, { import = "lazyvim.plugins.extras.util.chezmoi" },
defaults = { -- import/override with your plugins
lazy = false, { import = "plugins" },
version = false, -- always use the latest git commit },
}, defaults = {
install = { colorscheme = { "tokyonight", "habamax" } }, lazy = false,
checker = { enabled = true }, -- automatically check for plugin updates version = false, -- always use the latest git commit
performance = { },
rtp = { install = { colorscheme = { "tokyonight", "habamax" } },
-- disable some rtp plugins checker = { enabled = true }, -- automatically check for plugin updates
disabled_plugins = { performance = {
"gzip", rtp = {
-- "matchit", -- disable some rtp plugins
-- "matchparen", disabled_plugins = {
-- "netrwPlugin", "gzip",
"tarPlugin", -- "matchit",
"tohtml", -- "matchparen",
"tutor", -- "netrwPlugin",
"zipPlugin", "tarPlugin",
}, "tohtml",
}, "tutor",
}, "zipPlugin",
},
},
},
}) })

View file

@ -0,0 +1,9 @@
return {
"hrsh7th/nvim-cmp",
opts = function(_, opts)
opts.experimental = {
-- Disable ghost text because it pisses me off.
ghost_text = false,
}
end,
}