feat(neovide): support neovide for Neovim

This commit is contained in:
Price Hiller 2024-02-26 01:59:35 -06:00
parent 3c6118032c
commit cf0efbac34
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
4 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,15 @@
[font]
normal = "FiraCode Nerd Font"
size = 18
[font.features]
"FiraCode Nerd Font" = [
"+zero",
"+cv02",
"+cv30",
"+ss05",
"+ss03",
"+ss04",
"+cv26",
"+ss10",
]

View File

@ -14,3 +14,7 @@ require("plugins.init")
-- NOTE: into non-postload regions then handled in postload modules.
require("plugins.postload")
require("core.postload")
if vim.g.neovide then
require("neovide")
end

View File

@ -0,0 +1 @@
vim.opt.linespace = -1

View File

@ -19,7 +19,7 @@ return {
})
require("kanagawa").setup({
transparent = true,
transparent = not vim.g.neovide,
dim_inactive = true,
globalStatus = true,
theme = "wave",