Skip to content

Commit

Permalink
deps: Update tree-sitter parser url
Browse files Browse the repository at this point in the history
  • Loading branch information
kristijanhusak committed Jan 16, 2024
1 parent 144c264 commit be6811b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/orgmode/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_G.orgmode = _G.orgmode or {}
local ts_revision = '081179c52b3e8175af62b9b91dc099d010c38770'
local ts_revision = 'f8c6b1e72f82f17e41004e04e15f62a83ecc27b0'
local setup_ts_grammar_used = false
local instance = nil

Expand Down Expand Up @@ -69,9 +69,9 @@ local function setup_ts_grammar(revision)
local parser_config = require('nvim-treesitter.parsers').get_parser_configs()
parser_config.org = {
install_info = {
url = 'https://github.com/milisims/tree-sitter-org',
url = 'https://github.com/nvim-orgmode/tree-sitter-org',
revision = revision or ts_revision,
files = { 'src/parser.c', 'src/scanner.cc' },
files = { 'src/parser.c', 'src/scanner.c' },
},
filetype = 'org',
}
Expand Down

0 comments on commit be6811b

Please sign in to comment.