Skip to content

Commit

Permalink
refactor(nvim): use only lua for ensure_installed
Browse files Browse the repository at this point in the history
  • Loading branch information
kutsan committed Jan 1, 2024
1 parent a4489d0 commit c24d5e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .config/nvim/plugin/packages/treesitter.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
local treesitter = require('nvim-treesitter.configs')
local treesitter_context = require('treesitter-context')

---@diagnostic disable-next-line: missing-fields
treesitter.setup({
ensure_installed = 'all',
ensure_installed = { 'lua' },
sync_install = false,
auto_install = true,
indent = {
Expand Down

0 comments on commit c24d5e8

Please sign in to comment.