Skip to content

Commit

Permalink
chore: keep code styles and descriptions consistent (ayamir#991)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jint-lzxy authored and singlemancombat committed Sep 8, 2023
1 parent 9704712 commit 7ce7179
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/core/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ settings["dap_deps"] = {
"python", -- Python (debugpy)
}

-- Set here the Treesitter that will be installed and configured during boot.
-- Set the Treesitter parsers that will be installed during bootstrap here.
-- Check the below link for all supported languages:
-- https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
---@type string[]
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/configs/editor/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ return vim.schedule_wrap(function()
vim.api.nvim_set_option_value("foldexpr", "nvim_treesitter#foldexpr()", {})

require("modules.utils").load_plugin("nvim-treesitter", {
ensure_installed = require("core.settings")["treesitter_deps"],
ensure_installed = require("core.settings").treesitter_deps,
highlight = {
enable = true,
disable = function(ft, bufnr)
Expand Down

0 comments on commit 7ce7179

Please sign in to comment.