recoding process pipline

This commit is contained in:
huyjaky
2025-08-22 17:57:51 +07:00
parent e553f7585d
commit 23bb2a7aa6
14 changed files with 456 additions and 65 deletions

43
lua/plugins/ui.lua Normal file
View File

@@ -0,0 +1,43 @@
return {
{
"ribru17/bamboo.nvim",
lazy = false,
priority = 1000,
config = function()
require("bamboo").setup {
integrations = { mini = true },
terminal_colors = false
}
require("bamboo").load()
end,
},
{
"rebelot/heirline.nvim",
opts = function(_, opts)
opts.statusline = require("plugins.configs.ui.heirline").statusline
opts.winbar = require("plugins.configs.ui.heirline").winbar
end,
},
{
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
preset = "helix",
layout = {
height = { min = 6 },
},
},
keys = {
{
"<leader>?",
function() require("which-key").show { global = false } end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}
}