From e3930e8aa705cf6dfe66470b000ce637cab034e3 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 25 Aug 2024 23:35:53 +0200 Subject: [PATCH] remove unused plugins --- lua/config/zen-mode.lua | 15 --------------- lua/plugin_specs.lua | 13 +------------ 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 lua/config/zen-mode.lua diff --git a/lua/config/zen-mode.lua b/lua/config/zen-mode.lua deleted file mode 100644 index b6d52ce..0000000 --- a/lua/config/zen-mode.lua +++ /dev/null @@ -1,15 +0,0 @@ -require("zen-mode").setup { - window = { - backdrop = 0.8, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal - width = 120, - options = { - -- signcolumn = "no", -- disable signcolumn - -- number = false, -- disable number column - -- relativenumber = false, -- disable relative numbers - cursorline = false, -- disable cursorline - cursorcolumn = false, -- disable cursor column - foldcolumn = "0", -- disable fold column - list = false, -- disable whitespace characters - }, - }, -} diff --git a/lua/plugin_specs.lua b/lua/plugin_specs.lua index 5e1e9b4..35d75aa 100644 --- a/lua/plugin_specs.lua +++ b/lua/plugin_specs.lua @@ -62,9 +62,6 @@ local plugin_specs = { end, }, - -- Python indent (follows the PEP8 style) - { "Vimjas/vim-python-pep8-indent", ft = { "python" } }, - -- Python-related text object { "jeetsukumaran/vim-pythonsense", ft = { "python" } }, @@ -397,14 +394,6 @@ local plugin_specs = { ft = { "markdown" }, }, - { - "folke/zen-mode.nvim", - cmd = "ZenMode", - config = function() - require("config.zen-mode") - end, - }, - { "rhysd/vim-grammarous", enabled = function() @@ -456,7 +445,7 @@ local plugin_specs = { -- Modern matchit implementation { "andymass/vim-matchup", event = "BufRead" }, - { "tpope/vim-scriptease", cmd = { "Scriptnames", "Message", "Verbose" } }, + { "tpope/vim-scriptease", cmd = { "Scriptnames", "Messages", "Verbose" } }, -- Asynchronous command execution { "skywind3000/asyncrun.vim", lazy = true, cmd = { "AsyncRun" } },