nvim: Format plugins file
This commit is contained in:
parent
e35dec9f9f
commit
681c48d4f7
1 changed files with 27 additions and 35 deletions
|
@ -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" },
|
||||||
|
|
Loading…
Reference in a new issue