Optimized neovim config

This commit is contained in:
Michael Chalupiak
2025-08-24 02:58:30 -04:00
parent 1114797040
commit cf051a191f
8 changed files with 331 additions and 159 deletions

View File

@@ -1,46 +1,37 @@
return {
{ 'winston0410/range-highlight.nvim' },
{
'winston0410/range-highlight.nvim',
event = 'VeryLazy',
},
{
'lukas-reineke/indent-blankline.nvim',
event = 'VeryLazy',
config = function()
require'ibl'.setup{ scope = { enabled = false } }
end
},
-- {
-- "folke/noice.nvim",
-- event = "VeryLazy",
-- opts = {
-- -- add any options here
-- command_palette = true,
-- },
-- dependencies = {
-- -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
-- "MunifTanjim/nui.nvim",
-- -- OPTIONAL:
-- -- `nvim-notify` is only needed, if you want to use the notification view.
-- -- If not available, we use `mini` as the fallback
-- "rcarriga/nvim-notify",
-- }
-- },
--
{ 'nvim-tree/nvim-web-devicons' },
{
'goolord/alpha-nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
config = function()
require('alpha').setup(require'alpha.themes.startify'.config)
end
'nvim-tree/nvim-web-devicons',
-- event = 'VeryLazy',
lazy = true,
},
-- {
-- 'goolord/alpha-nvim',
-- dependencies = {
-- 'nvim-tree/nvim-web-devicons',
-- },
-- config = function()
-- require('alpha').setup(require'alpha.themes.startify'.config)
-- end
-- },
{
'lewis6991/gitsigns.nvim',
event = 'VeryLazy',
opts = {
current_line_blame = true,
}