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

89 lines
2.5 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
},
2024-10-07 20:16:38 +01:00
{
'kevinhwang91/nvim-bqf',
event = "VeryLazy",
ft = 'qf'
},
2024-11-12 15:42:29 +00:00
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {
views = {
cmdline_popup = {
position = {
row = "100%",
col = "0%",
},
size = {
min_width = 60,
width = "97%",
2024-11-12 15:42:29 +00:00
height = "auto",
},
},
cmdline_popupmenu = {
relative = "editor",
position = {
row = "85%",
col = "0%",
},
},
},
lsp = {
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
presets = {
command_palette = true,
2024-11-12 15:42:29 +00:00
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = true, -- enables an input dialog for inc-rename.nvim
},
},
dependencies = {
"MunifTanjim/nui.nvim",
}
},
-- {
-- "OXY2DEV/markview.nvim",
-- ft = "markdown",
-- dependencies = {
-- "nvim-treesitter/nvim-treesitter",
-- "nvim-tree/nvim-web-devicons",
-- },
-- opts = {
-- modes = { "n", "no", "c" },
-- 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 }),
},
},
{
"NStefan002/screenkey.nvim",
lazy = false,
version = "*", -- or branch = "dev", to use the latest commit
},
2024-06-01 03:53:39 +01:00
}