diff --git a/nvim/dot-config/nvim/lua/plugins/whitespace.lua b/nvim/dot-config/nvim/lua/plugins/whitespace.lua deleted file mode 100644 index 872ed63..0000000 --- a/nvim/dot-config/nvim/lua/plugins/whitespace.lua +++ /dev/null @@ -1,19 +0,0 @@ -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", "t", require("whitespace-nvim").trim, { desc = "Remove trailing whitespace" }) - end, -}