config-neovim/lua/plugins/10-editor.lua
2024-05-07 20:51:37 +08:00

47 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
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
event = "VeryLazy",
opts = {
scope = {
show_start = false,
show_end = false,
},
},
},
{
"famiu/bufdelete.nvim",
keys = {
{ "<leader>c", "<cmd>Bdelete<cr>", mode = "n" },
},
},
{
"karb94/neoscroll.nvim",
enabled = custom.full_feature,
main = "neoscroll",
event = "VeryLazy",
opts = { },
},
{
"dstein64/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 }
},
}
}