nvim: Format plugins file

This commit is contained in:
Marty Oehme 2023-06-07 10:06:32 +02:00
parent e35dec9f9f
commit 681c48d4f7
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -8,9 +8,7 @@ return {
{ 'ggandor/lightspeed.nvim', event = "VeryLazy" }, -- jump between letters with improved fFtT quicksearch, mimics sneak { 'ggandor/lightspeed.nvim', event = "VeryLazy" }, -- jump between letters with improved fFtT quicksearch, mimics sneak
{ {
'lewis6991/gitsigns.nvim', -- show vcs changes on left-hand gutter 'lewis6991/gitsigns.nvim', -- show vcs changes on left-hand gutter
config = function() config = function() require('plug._gitsigns') end,
require('plug._gitsigns')
end,
event = "BufRead" event = "BufRead"
}, { "m4xshen/smartcolumn.nvim", config = true }, -- auto-hiding colorcolumn }, { "m4xshen/smartcolumn.nvim", config = true }, -- auto-hiding colorcolumn
-- files -- files
@ -29,9 +27,7 @@ return {
'NvChad/nvim-colorizer.lua', -- color hex, named colors in the correct preview scheme 'NvChad/nvim-colorizer.lua', -- color hex, named colors in the correct preview scheme
config = function() config = function()
require('colorizer').setup({ require('colorizer').setup({
user_default_options = { user_default_options = { mode = 'virtualtext' }
mode = 'virtualtext'
}
}) })
end, end,
event = "VeryLazy" event = "VeryLazy"
@ -211,11 +207,7 @@ return {
end, end,
event = "BufReadPre" event = "BufReadPre"
}, { }, {
'lewis6991/spellsitter.nvim', -- uses treesitter to highlight spelling errors -- lsp
config = function() require('spellsitter').setup() end,
event = "BufReadPre"
}, -- lsp
{
"VonHeikemen/lsp-zero.nvim", "VonHeikemen/lsp-zero.nvim",
dependencies = { dependencies = {
{ "neovim/nvim-lspconfig", branch = "master" }, { "neovim/nvim-lspconfig", branch = "master" },
@ -239,7 +231,7 @@ return {
}, },
config = function() require('plug._lsp') end, config = function() require('plug._lsp') end,
branch = "v2.x" branch = "v2.x"
}, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code }, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code
{ 'ray-x/lsp_signature.nvim', config = true }, -- UI improvements { 'ray-x/lsp_signature.nvim', config = true }, -- UI improvements
{ 'stevearc/dressing.nvim', config = true }, { { 'stevearc/dressing.nvim', config = true }, {
'rcarriga/nvim-notify', 'rcarriga/nvim-notify',