nvim: neovide

This commit is contained in:
Vitor Gonçalves 2024-02-16 18:45:10 -03:00
parent a2afba2b35
commit 00fe62184e
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
1 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,5 @@
local opt = vim.opt
local gv = vim.g
-- tabs
opt.tabstop = 4
@ -28,3 +29,10 @@ opt.splitbelow = true
opt.foldlevel = 99
opt.conceallevel = 2
if vim.g.neovide then
opt.guifont = "JetBrainsMono Nerd Font Mono:h14"
gv.neovide_scale_factor = 0.08
gv.neovide_transparency = 0.8
end