aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index 2537eec..12434fc 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -38,7 +38,9 @@ require("packer").startup({
use {"hrsh7th/cmp-path", after = "nvim-cmp"}
use {"quangnguyen30192/cmp-nvim-ultisnips", after = {'nvim-cmp', 'ultisnips'}}
- use {"hrsh7th/cmp-emoji", after = 'nvim-cmp'}
+ if vim.g.is_mac then
+ use {"hrsh7th/cmp-emoji", after = 'nvim-cmp'}
+ end
if vim.g.is_mac then
use({ "nvim-treesitter/nvim-treesitter", event = 'BufEnter', run = ":TSUpdate", config = [[require('config.treesitter')]] })