feat(neovide): support neovide for Neovim
This commit is contained in:
parent
3c6118032c
commit
cf0efbac34
15
dots/.config/neovide/config.toml
Normal file
15
dots/.config/neovide/config.toml
Normal 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",
|
||||
]
|
@ -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
|
||||
|
1
dots/.config/nvim/lua/neovide.lua
Normal file
1
dots/.config/nvim/lua/neovide.lua
Normal file
@ -0,0 +1 @@
|
||||
vim.opt.linespace = -1
|
@ -19,7 +19,7 @@ return {
|
||||
})
|
||||
|
||||
require("kanagawa").setup({
|
||||
transparent = true,
|
||||
transparent = not vim.g.neovide,
|
||||
dim_inactive = true,
|
||||
globalStatus = true,
|
||||
theme = "wave",
|
||||
|
Loading…
Reference in New Issue
Block a user