Files
.config/nvim/lua/plugins/edit.lua
2025-09-08 10:48:06 +02:00

17 lines
339 B
Lua

-- File is used for any editing based plugins
-- Contains vim-sleuth, which is used for automatic identations
-- trim.nvim which is used for automatically trimming whitespace
return {
{
"tpope/vim-sleuth",
event = "VeryLazy",
},
{
"cappyzawa/trim.nvim",
event = "VeryLazy",
opts = {
ft_blocklist = {"markdown"},
},
},
}