config-neovim/lua/plugins/10-editor.lua
2023-12-18 21:45:43 +08:00

48 lines
1.1 KiB
Lua

return {
{
"sainnhe/gruvbox-material",
config = function(_, _)
vim.o.termguicolors = true
vim.g.background = "dark"
vim.cmd("colorscheme gruvbox-material")
end
},
{
'stevearc/dressing.nvim',
enabled = custom.full_feature,
event = "VeryLazy",
opts = { },
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
event = "VeryLazy",
opts = { },
},
{
"famiu/bufdelete.nvim",
keys = {
{ "zx", "<cmd>Bdelete<cr>", mode = "n" },
},
},
{
"karb94/neoscroll.nvim",
enabled = custom.full_feature,
main = "neoscroll",
event = "VeryLazy",
opts = { },
},
{
"petertriho/nvim-scrollview",
enabled = custom.full_feature,
event = "VeryLazy",
opts = {
excluded_filetypes = { "NvimTree" },
current_only = false,
base = "right",
signs_on_startup = { "all" },
diagnostics_severities = { vim.diagnostic.severity.ERROR }
},
}
}