fix no statusline in nvim
This commit is contained in:
parent
59656e019f
commit
d4acf21a8e
5 changed files with 15 additions and 4 deletions
|
|
@ -29,5 +29,5 @@ require("lazy").setup({
|
|||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "habamax" } },
|
||||
-- automatically check for plugin updates
|
||||
-- checker = { enabled = true },
|
||||
-- checker = { enabled = true },
|
||||
})
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ return {
|
|||
dependencies = {
|
||||
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
||||
},
|
||||
lazy = false,
|
||||
cmd = "Grapple",
|
||||
keys = {
|
||||
{ "<leader><leader>a", "<cmd>Grapple toggle<cr>", desc = "Toggle bookmark for current file" },
|
||||
|
|
|
|||
13
Configs/nvim/.config/nvim/lua/aleidk/plugins/debug.lua
Normal file
13
Configs/nvim/.config/nvim/lua/aleidk/plugins/debug.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
dependencies = {
|
||||
{
|
||||
"igorlfs/nvim-dap-view",
|
||||
---@module 'dap-view'
|
||||
---@type dapview.Config
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5,7 +5,6 @@ return {
|
|||
"mason-org/mason.nvim",
|
||||
opts = {}
|
||||
},
|
||||
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
||||
{
|
||||
"ckolkey/ts-node-action",
|
||||
dependencies = { "nvim-treesitter" },
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ return {
|
|||
require('mini.notify').setup()
|
||||
vim.notify = require('mini.notify').make_notify()
|
||||
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.git').setup({})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue