chore(nvim): Massive restructure and cleanup
This commit is contained in:
parent
5c5eed7581
commit
a796af3510
27 changed files with 558 additions and 917 deletions
26
.config/nvim/lua/plugins/ui.lua
Normal file
26
.config/nvim/lua/plugins/ui.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
{
|
||||
"vimpostor/vim-tpipeline",
|
||||
config = function()
|
||||
vim.g.tpipeline_restore = 1
|
||||
vim.g.tpipeline_autoembed = 1
|
||||
vim.o.laststatus = 0
|
||||
vim.g.tpipeline_statusline = '%=%l:%c'
|
||||
end
|
||||
},
|
||||
{
|
||||
'echasnovski/mini.notify',
|
||||
version = false,
|
||||
config = function()
|
||||
vim.api.nvim_set_hl(0, 'MiniNotifyNormal', { link = 'Normal' })
|
||||
vim.api.nvim_set_hl(0, 'MiniNotifyBorder', { link = 'Normal' })
|
||||
require("mini.notify").setup()
|
||||
end
|
||||
},
|
||||
--Better quick fix
|
||||
{
|
||||
'kevinhwang91/nvim-bqf',
|
||||
event = "VeryLazy",
|
||||
ft = 'qf'
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue