mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
enc: rename deno to active_deno_config
This commit is contained in:
parent
4333ed78b4
commit
aed25e545a
2 changed files with 131 additions and 134 deletions
|
@ -176,4 +176,4 @@ pcode.active_java_config = {
|
|||
project = "gradle", -- gradle or maven
|
||||
use_nvim_jdtls = true, -- mfussenegger/nvim-jdtls
|
||||
}
|
||||
pcode.active_deno = false
|
||||
pcode.active_deno_config = false
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
local M={}
|
||||
if pcode.active_deno or false then
|
||||
M={
|
||||
local M = {}
|
||||
if pcode.active_deno_config or false then
|
||||
M = {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = function(_, opts)
|
||||
opts.ensure_installed = opts.ensure_installed or {}
|
||||
vim.list_extend(
|
||||
opts.ensure_installed,
|
||||
{ "html", "javascript", "typescript", "tsx", "css", "json", "jsonc" }
|
||||
)
|
||||
vim.list_extend(opts.ensure_installed, { "html", "javascript", "typescript", "tsx", "css", "json", "jsonc" })
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue