From 9004e09b761727b5755f17af6278e73f64234852 Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 13 Jul 2021 01:06:06 +0800 Subject: [PATCH] update semshi settings Only use it on Windows. Treesitter highlighting may be enough. --- lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 95a0745..13e1435 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -37,7 +37,7 @@ require('packer').startup( end -- Python syntax highlighting and more - if (vim.g.is_mac == 1) or (vim.g.is_win == 1) then + if vim.g.is_win == 1 then use {'numirias/semshi', ft = 'python', config = 'vim.cmd [[UpdateRemotePlugins]]'} end