macOS adjustments

This commit is contained in:
thomas-gideon-gm 2024-04-18 17:21:36 -04:00
parent 3ca0930d08
commit cd9c45cf26
1 changed files with 8 additions and 2 deletions

View File

@ -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