Files
dotfiles/nvim/dot-config/nvim/lua/plugins/whitespace.lua

20 lines
631 B
Lua

return {
enabled = false,
"johnfrankmorgan/whitespace.nvim",
config = function()
require("whitespace-nvim").setup({
-- configuration options and their defaults
-- `highlight` configures which highlight is used to display
-- trailing whitespace
highlight = "CursorLine",
-- `ignored_filetypes` configures which filetypes to ignore when
-- displaying trailing whitespace
ignored_filetypes = { "TelescopePrompt", "Trouble", "help" },
})
-- remove trailing whitespace with a keybinding
vim.keymap.set("n", "<Leader>t", require("whitespace-nvim").trim, { desc = "Remove trailing whitespace" })
end,
}