Skip to content

Commit

Permalink
chore: keep code styles and descriptions consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Jint-lzxy committed Sep 8, 2023
1 parent ea6fdb3 commit b9e90d5
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 @@ -123,7 +123,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 b9e90d5

Please sign in to comment.