good ol kickstarter

This commit is contained in:
aliaksandrkotau 2024-06-23 11:14:08 +02:00
parent ead5149b03
commit 539ca69d5f
3 changed files with 36 additions and 31 deletions

View file

@ -1,4 +1,4 @@
return {
return {} or {
'rcarriga/nvim-dap-ui',
dependencies = {
'mfussenegger/nvim-dap',

View file

@ -1,19 +1,20 @@
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
'nvim-neo-tree/neo-tree.nvim',
version = '*',
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
'MunifTanjim/nui.nvim',
},
config = function ()
config = function()
require('neo-tree').setup {
filesystem = {
filtered_items = {
visible = true, -- This is what you want: If you set this to `true`, all "hide" just mean "dimmed out"
hide_dotfiles = false,
hide_gitignored = false,
filtered_items = {
visible = false, -- This is what you want: If you set this to `true`, all "hide" just mean "dimmed out"
hide_dotfiles = false,
hide_gitignored = false,
},
},
}
}}
end,
}