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,36 +207,32 @@ return {
|
||||||
end,
|
end,
|
||||||
event = "BufReadPre"
|
event = "BufReadPre"
|
||||||
}, {
|
}, {
|
||||||
'lewis6991/spellsitter.nvim', -- uses treesitter to highlight spelling errors
|
-- lsp
|
||||||
config = function() require('spellsitter').setup() end,
|
"VonHeikemen/lsp-zero.nvim",
|
||||||
event = "BufReadPre"
|
dependencies = {
|
||||||
}, -- lsp
|
{ "neovim/nvim-lspconfig", branch = "master" },
|
||||||
{
|
"williamboman/mason.nvim", "williamboman/mason-lspconfig.nvim", {
|
||||||
"VonHeikemen/lsp-zero.nvim",
|
"hrsh7th/nvim-cmp",
|
||||||
|
branch = "main",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "neovim/nvim-lspconfig", branch = "master" },
|
"andersevenrud/cmp-tmux", "cbarrete/completion-vcard",
|
||||||
"williamboman/mason.nvim", "williamboman/mason-lspconfig.nvim", {
|
"f3fora/cmp-spell", "hrsh7th/cmp-nvim-lsp",
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/cmp-path", "hrsh7th/cmp-buffer",
|
||||||
branch = "main",
|
"hrsh7th/cmp-calc", "hrsh7th/cmp-cmdline",
|
||||||
dependencies = {
|
"hrsh7th/cmp-nvim-lua", "dmitmel/cmp-digraphs",
|
||||||
"andersevenrud/cmp-tmux", "cbarrete/completion-vcard",
|
"jc-doyle/cmp-pandoc-references",
|
||||||
"f3fora/cmp-spell", "hrsh7th/cmp-nvim-lsp",
|
"kdheepak/cmp-latex-symbols", "lukas-reineke/cmp-rg",
|
||||||
"hrsh7th/cmp-path", "hrsh7th/cmp-buffer",
|
"crispgm/cmp-beancount", "ray-x/cmp-treesitter",
|
||||||
"hrsh7th/cmp-calc", "hrsh7th/cmp-cmdline",
|
"saadparwaiz1/cmp_luasnip"
|
||||||
"hrsh7th/cmp-nvim-lua", "dmitmel/cmp-digraphs",
|
}
|
||||||
"jc-doyle/cmp-pandoc-references",
|
}, "L3MON4D3/LuaSnip", "rafamadriz/friendly-snippets",
|
||||||
"kdheepak/cmp-latex-symbols", "lukas-reineke/cmp-rg",
|
{ "lukas-reineke/lsp-format.nvim", config = true },
|
||||||
"crispgm/cmp-beancount", "ray-x/cmp-treesitter",
|
{ "j-hui/fidget.nvim", config = true } -- loading animations for some LSP
|
||||||
"saadparwaiz1/cmp_luasnip"
|
},
|
||||||
}
|
config = function() require('plug._lsp') end,
|
||||||
}, "L3MON4D3/LuaSnip", "rafamadriz/friendly-snippets",
|
branch = "v2.x"
|
||||||
{ "lukas-reineke/lsp-format.nvim", config = true },
|
}, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code
|
||||||
{ "j-hui/fidget.nvim", config = true } -- loading animations for some LSP
|
{ 'ray-x/lsp_signature.nvim', config = true }, -- UI improvements
|
||||||
},
|
|
||||||
config = function() require('plug._lsp') end,
|
|
||||||
branch = "v2.x"
|
|
||||||
}, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code
|
|
||||||
{ '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',
|
||||||
config = function() vim.notify = require("notify") end
|
config = function() vim.notify = require("notify") end
|
||||||
|
|
Loading…
Reference in a new issue