diff --git a/ansible/tasks/neovim.yml b/ansible/tasks/neovim.yml index 9f80556..ce22212 100644 --- a/ansible/tasks/neovim.yml +++ b/ansible/tasks/neovim.yml @@ -59,3 +59,13 @@ fi tags: - nvim + +- name: Update treesitter parsers + ansible.builtin.command: + argv: + - nvim + - --headless + - "+TSUpdateSync" + - "+qa" + tags: + - nvim diff --git a/nvim/lua/plugins/language.lua b/nvim/lua/plugins/language.lua index 9df596b..946c320 100644 --- a/nvim/lua/plugins/language.lua +++ b/nvim/lua/plugins/language.lua @@ -37,10 +37,6 @@ return { "yaml", }, }, - -- Pin before "tab" node type addition that breaks tree-sitter-vim. - -- See: https://github.com/nvim-treesitter/nvim-treesitter/issues/8369 - -- TODO: Remove this pin once tree-sitter-vim ships with "tab" support. - commit = "d0bf5ff", }, { "mason-org/mason.nvim",