diff --git a/init.lua b/init.lua index 33cf2c3..1e635f7 100644 --- a/init.lua +++ b/init.lua @@ -122,9 +122,15 @@ vim.g.guioptions = guiopts vim.opt.mouse = "nv" -vim.opt.gfn = "FiraCode Nerd Font Mono:h12" +if vim.fn.has('macunix') then + vim.opt.gfn = "FiraCode Nerd Font Mono:h16" +else + vim.opt.gfn = "FiraCode Nerd Font Mono:h12" +end -require('nvim-projectconfig').setup({autocmd=true}) +if not vim.fn.has('macunix') then + require('nvim-projectconfig').setup({autocmd=true}) +end require("trouble").setup { -- your configuration comes here -- or leave it empty to use the default settings