config-neovim/lua/plugins/10-editor.lua

41 lines
885 B
Lua
Raw Normal View History

return {
{
"sainnhe/gruvbox-material",
config = function(_, _)
vim.o.termguicolors = true
vim.g.background = "dark"
vim.cmd("colorscheme gruvbox-material")
end
},
2023-07-12 03:42:17 +00:00
{
"lukas-reineke/indent-blankline.nvim",
2023-10-19 13:43:01 +00:00
main = "ibl",
event = "VeryLazy",
opts = {
scope = {
show_start = false,
show_end = false,
},
},
2023-07-12 03:42:17 +00:00
},
{
"NMAC427/guess-indent.nvim",
},
{
"chentoast/marks.nvim",
opts = {
builtin_marks = { ".", "<", ">", "^" },
mappings = {
next = "]m",
prev = "[m",
},
},
},
2023-07-12 03:41:09 +00:00
{
"famiu/bufdelete.nvim",
keys = {
{ "<leader>c", "<cmd>Bdelete<cr>", mode = "n" },
2023-07-12 03:41:09 +00:00
},
},
}