(nvim) cleaned up plugins

This commit is contained in:
scbj
2026-03-25 09:13:41 +01:00
parent 40601f53da
commit e47f428473

View File

@@ -1,58 +1,58 @@
-- Standalone plugins with less than 10 lines of config go here -- Standalone plugins with less than 10 lines of config go here
return { return {
{ {
-- autoclose tags -- autoclose tags
"windwp/nvim-ts-autotag", "windwp/nvim-ts-autotag",
}, },
-- { -- {
-- -- detect tabstop and shiftwidth automatically -- -- detect tabstop and shiftwidth automatically
-- "tpope/vim-sleuth", -- "tpope/vim-sleuth",
-- }, -- },
-- { -- {
-- -- Powerful Git integration for Vim -- -- Powerful Git integration for Vim
-- "tpope/vim-fugitive", -- "tpope/vim-fugitive",
-- }, -- },
-- { -- {
-- -- GitHub integration for vim-fugitive -- -- GitHub integration for vim-fugitive
-- "tpope/vim-rhubarb", -- "tpope/vim-rhubarb",
-- }, -- },
{ -- {
-- Hints keybinds -- -- Hints keybinds
"folke/which-key.nvim", -- "folke/which-key.nvim",
opts = { -- opts = {
win = { -- win = {
border = { -- border = {
{ "", "FloatBorder" }, -- { "╭", "FloatBorder" },
{ "", "FloatBorder" }, -- { "─", "FloatBorder" },
{ "", "FloatBorder" }, -- { "╮", "FloatBorder" },
{ "", "FloatBorder" }, -- { "│", "FloatBorder" },
{ "", "FloatBorder" }, -- { "╯", "FloatBorder" },
{ "", "FloatBorder" }, -- { "─", "FloatBorder" },
{ "", "FloatBorder" }, -- { "╰", "FloatBorder" },
{ "", "FloatBorder" }, -- { "│", "FloatBorder" },
}, -- },
}, -- },
}, -- },
}, -- },
{ {
-- Autoclose parentheses, brackets, quotes, etc. -- Autoclose parentheses, brackets, quotes, etc.
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
event = "InsertEnter", event = "InsertEnter",
config = true, config = true,
opts = {}, opts = {},
}, },
{ {
-- Highlight todo, notes, etc in comments -- Highlight todo, notes, etc in comments
"folke/todo-comments.nvim", "folke/todo-comments.nvim",
event = "VimEnter", event = "VimEnter",
dependencies = { "nvim-lua/plenary.nvim" }, dependencies = { "nvim-lua/plenary.nvim" },
opts = { signs = false }, opts = { signs = false },
}, },
{ {
-- high-performance color highlighter -- high-performance color highlighter
"norcalli/nvim-colorizer.lua", "norcalli/nvim-colorizer.lua",
config = function() config = function()
require("colorizer").setup() require("colorizer").setup()
end, end,
}, },
} }