From d2a4babb2e4167cb59de6f45b97ff0a7289a0b9b Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sat, 31 May 2025 00:21:17 +0200 Subject: [PATCH] Remove unused whitespace plugin --- .../nvim/lua/plugins/whitespace.lua | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 nvim/dot-config/nvim/lua/plugins/whitespace.lua 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, -}