dotfiles/.config/nvim/lua/plugins/ui.lua

52 lines
1.4 KiB
Lua
Raw Normal View History

2024-06-01 03:53:39 +01:00
return {
{
"vimpostor/vim-tpipeline",
config = function()
2024-06-01 19:56:18 +01:00
vim.g.tpipeline_restore = 0
vim.g.tpipeline_autoembed = 0
2024-06-01 03:53:39 +01:00
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'
},
2024-09-06 16:10:33 +01:00
{
"OXY2DEV/markview.nvim",
ft = "markdown",
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons",
},
opts = {
modes = { "n", "no", "i", "c" },
hybrid_modes = { "i" },
callbacks = {
on_enable = function(_, win)
vim.wo[win].conceallevel = 2;
vim.wo[win].concealcursor = "c";
end
}
}
},
2024-06-08 18:05:23 +01:00
{
"folke/zen-mode.nvim",
event = "VeryLazy",
opts = {
vim.keymap.set("n", "<leader>z", "<Cmd> ZenMode <CR>", { noremap = true, silent = true }),
},
},
2024-06-01 03:53:39 +01:00
}