fix no statusline in nvim

This commit is contained in:
Alexander Navarro 2025-07-24 10:03:53 -04:00
parent 59656e019f
commit d4acf21a8e
5 changed files with 15 additions and 4 deletions

View file

@ -29,5 +29,5 @@ require("lazy").setup({
-- colorscheme that will be used when installing plugins. -- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } }, install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates -- automatically check for plugin updates
-- checker = { enabled = true }, -- checker = { enabled = true },
}) })

View file

@ -13,7 +13,6 @@ return {
dependencies = { dependencies = {
{ "nvim-tree/nvim-web-devicons", lazy = true }, { "nvim-tree/nvim-web-devicons", lazy = true },
}, },
lazy = false,
cmd = "Grapple", cmd = "Grapple",
keys = { keys = {
{ "<leader><leader>a", "<cmd>Grapple toggle<cr>", desc = "Toggle bookmark for current file" }, { "<leader><leader>a", "<cmd>Grapple toggle<cr>", desc = "Toggle bookmark for current file" },

View file

@ -0,0 +1,13 @@
return {
{
"mfussenegger/nvim-dap",
dependencies = {
{
"igorlfs/nvim-dap-view",
---@module 'dap-view'
---@type dapview.Config
opts = {},
},
}
}
}

View file

@ -5,7 +5,6 @@ return {
"mason-org/mason.nvim", "mason-org/mason.nvim",
opts = {} opts = {}
}, },
{ "nvim-tree/nvim-web-devicons", lazy = true },
{ {
"ckolkey/ts-node-action", "ckolkey/ts-node-action",
dependencies = { "nvim-treesitter" }, dependencies = { "nvim-treesitter" },

View file

@ -22,7 +22,7 @@ return {
require('mini.notify').setup() require('mini.notify').setup()
vim.notify = require('mini.notify').make_notify() vim.notify = require('mini.notify').make_notify()
vim.keymap.set('n', '<Leader>un', require('mini.notify').show_history, { desc = 'Show notifications', silent = true }) vim.keymap.set('n', '<Leader>un', require('mini.notify').show_history, { desc = 'Show notifications', silent = true })
require('mini.statusline').setup({}) require('mini.statusline').setup()
require('mini.diff').setup({ view = { style = 'sign' } }) require('mini.diff').setup({ view = { style = 'sign' } })
require('mini.git').setup({}) require('mini.git').setup({})