add: update config

This commit is contained in:
asep.komarudin 2024-05-28 20:50:20 +07:00
parent 1f603c154f
commit ff6c42d6ff
3 changed files with 28 additions and 29 deletions

View file

@ -1,27 +1,27 @@
return {
"folke/playground",
lazy = true,
event = "BufRead",
config = function()
require("nvim-treesitter.configs").setup {
playground = {
enable = true,
disable = {},
updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code
persist_queries = false, -- Whether the query persists across vim sessions
keybindings = {
toggle_query_editor = "o",
toggle_hl_groups = "i",
toggle_injected_languages = "t",
toggle_anonymous_nodes = "a",
toggle_language_display = "I",
focus_language = "f",
unfocus_language = "F",
update = "R",
goto_node = "<cr>",
show_help = "?",
},
},
}
end,
-- "folke/playground",
-- lazy = true,
-- event = "BufRead",
-- config = function()
-- require("nvim-treesitter.configs").setup {
-- playground = {
-- enable = true,
-- disable = {},
-- updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code
-- persist_queries = false, -- Whether the query persists across vim sessions
-- keybindings = {
-- toggle_query_editor = "o",
-- toggle_hl_groups = "i",
-- toggle_injected_languages = "t",
-- toggle_anonymous_nodes = "a",
-- toggle_language_display = "I",
-- focus_language = "f",
-- unfocus_language = "F",
-- update = "R",
-- goto_node = "<cr>",
-- show_help = "?",
-- },
-- },
-- }
-- end,
}

View file

@ -682,9 +682,9 @@ return {
vim.api.nvim_create_autocmd("ColorScheme", {
pattern = "*",
callback = function()
local colors = require("darcula").colors()
local hi = vim.api.nvim_set_hl
-- vim.api.nvim_set_hl(0, "BorderBG", { fg = "#4c4c4c" })
-- hi(0, "@property.json", { fg = "#9876AA" })
hi(0, "@property.json", { fg = colors.lavender })
end,
})
end,