[nvim] Don't install Treesitter on Windows

This commit is contained in:
Alyxia Sother 2022-01-30 14:13:29 +01:00
parent 2be37d4c4b
commit 66dfa9d0dc
No known key found for this signature in database
GPG key ID: 355968D14144B739
3 changed files with 11 additions and 5 deletions

View file

@ -1,4 +1,5 @@
local neorg = require('neorg')
local ok, neorg = pcall(require, 'neorg')
if not ok then return end;
local ok, cmp = pcall(require, 'cmp')
if not ok then return end;

View file

@ -1,4 +1,7 @@
local parser_configs = require('nvim-treesitter.parsers').get_parser_configs()
local ok, parser_configs = pcall(require, 'nvim-treesitter.parsers')
if not ok then return end
local parser_configs = parser_configs.get_parser_configs()
parser_configs.norg = {
install_info = {