macOS adjustments
This commit is contained in:
parent
3ca0930d08
commit
cd9c45cf26
1 changed files with 8 additions and 2 deletions
10
init.lua
10
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
|
||||
|
|
Loading…
Reference in a new issue