config-neovim/lua/plugins/10-editor.lua
leafee98 e777101523 Refactor plugins
- Add marks.nvim
- Use mason to setup LSP
  - config lua_ls for neovim config
- Disable treesitter
- Remove scroll plugin
- Remove mini-animate
2024-08-22 22:54:58 +08:00

41 lines
885 B
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,
},
},
},
{
"NMAC427/guess-indent.nvim",
},
{
"chentoast/marks.nvim",
opts = {
builtin_marks = { ".", "<", ">", "^" },
mappings = {
next = "]m",
prev = "[m",
},
},
},
{
"famiu/bufdelete.nvim",
keys = {
{ "<leader>c", "<cmd>Bdelete<cr>", mode = "n" },
},
},
}