fix: consolidate plugins table
This commit is contained in:
parent
1826f643fe
commit
6a37323f6a
|
@ -6,6 +6,25 @@ return {
|
||||||
{ "tpope/vim-surround" },
|
{ "tpope/vim-surround" },
|
||||||
{ "tribela/vim-transparent" },
|
{ "tribela/vim-transparent" },
|
||||||
|
|
||||||
|
{
|
||||||
|
"killtheliterate/nvim-reveal",
|
||||||
|
dev = false,
|
||||||
|
config = function()
|
||||||
|
require('nvim-reveal').setup {}
|
||||||
|
end
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
'norcalli/nvim-base16.lua',
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
local base16 = require 'base16'
|
||||||
|
|
||||||
|
base16(base16.themes[vim.env.BASE16_THEME or "3024"], true)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
lazy = true
|
lazy = true
|
||||||
|
@ -112,6 +131,7 @@ return {
|
||||||
null_ls.builtins.code_actions.eslint_d,
|
null_ls.builtins.code_actions.eslint_d,
|
||||||
null_ls.builtins.diagnostics.codespell,
|
null_ls.builtins.diagnostics.codespell,
|
||||||
null_ls.builtins.diagnostics.eslint_d,
|
null_ls.builtins.diagnostics.eslint_d,
|
||||||
|
null_ls.builtins.formatting.eslint_d,
|
||||||
null_ls.builtins.formatting.prettierd,
|
null_ls.builtins.formatting.prettierd,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
return {
|
|
||||||
'norcalli/nvim-base16.lua',
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
|
||||||
local base16 = require 'base16'
|
|
||||||
|
|
||||||
base16(base16.themes[vim.env.BASE16_THEME or "3024"], true)
|
|
||||||
end,
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
return {
|
|
||||||
{
|
|
||||||
"killtheliterate/nvim-reveal",
|
|
||||||
dev = false,
|
|
||||||
config = function()
|
|
||||||
require('nvim-reveal').setup {}
|
|
||||||
end
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue