From e47f42847375a7e20432fde3490774a9388b3d59 Mon Sep 17 00:00:00 2001 From: scbj Date: Wed, 25 Mar 2026 09:13:41 +0100 Subject: [PATCH] (nvim) cleaned up plugins --- nvim/.config/nvim/lua/plugins/misc.lua | 110 ++++++++++++------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/misc.lua b/nvim/.config/nvim/lua/plugins/misc.lua index 58144da..fe1de94 100644 --- a/nvim/.config/nvim/lua/plugins/misc.lua +++ b/nvim/.config/nvim/lua/plugins/misc.lua @@ -1,58 +1,58 @@ -- Standalone plugins with less than 10 lines of config go here return { - { - -- autoclose tags - "windwp/nvim-ts-autotag", - }, - -- { - -- -- detect tabstop and shiftwidth automatically - -- "tpope/vim-sleuth", - -- }, - -- { - -- -- Powerful Git integration for Vim - -- "tpope/vim-fugitive", - -- }, - -- { - -- -- GitHub integration for vim-fugitive - -- "tpope/vim-rhubarb", - -- }, - { - -- Hints keybinds - "folke/which-key.nvim", - opts = { - win = { - border = { - { "╭", "FloatBorder" }, - { "─", "FloatBorder" }, - { "╮", "FloatBorder" }, - { "│", "FloatBorder" }, - { "╯", "FloatBorder" }, - { "─", "FloatBorder" }, - { "╰", "FloatBorder" }, - { "│", "FloatBorder" }, - }, - }, - }, - }, - { - -- Autoclose parentheses, brackets, quotes, etc. - "windwp/nvim-autopairs", - event = "InsertEnter", - config = true, - opts = {}, - }, - { - -- Highlight todo, notes, etc in comments - "folke/todo-comments.nvim", - event = "VimEnter", - dependencies = { "nvim-lua/plenary.nvim" }, - opts = { signs = false }, - }, - { - -- high-performance color highlighter - "norcalli/nvim-colorizer.lua", - config = function() - require("colorizer").setup() - end, - }, + { + -- autoclose tags + "windwp/nvim-ts-autotag", + }, + -- { + -- -- detect tabstop and shiftwidth automatically + -- "tpope/vim-sleuth", + -- }, + -- { + -- -- Powerful Git integration for Vim + -- "tpope/vim-fugitive", + -- }, + -- { + -- -- GitHub integration for vim-fugitive + -- "tpope/vim-rhubarb", + -- }, + -- { + -- -- Hints keybinds + -- "folke/which-key.nvim", + -- opts = { + -- win = { + -- border = { + -- { "╭", "FloatBorder" }, + -- { "─", "FloatBorder" }, + -- { "╮", "FloatBorder" }, + -- { "│", "FloatBorder" }, + -- { "╯", "FloatBorder" }, + -- { "─", "FloatBorder" }, + -- { "╰", "FloatBorder" }, + -- { "│", "FloatBorder" }, + -- }, + -- }, + -- }, + -- }, + { + -- Autoclose parentheses, brackets, quotes, etc. + "windwp/nvim-autopairs", + event = "InsertEnter", + config = true, + opts = {}, + }, + { + -- Highlight todo, notes, etc in comments + "folke/todo-comments.nvim", + event = "VimEnter", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { signs = false }, + }, + { + -- high-performance color highlighter + "norcalli/nvim-colorizer.lua", + config = function() + require("colorizer").setup() + end, + }, }