not sure what I was up to here
parent
066642b243
commit
8f89531a3c
@ -0,0 +1,29 @@
|
|||||||
|
-- Full Neovide config options can be found here:
|
||||||
|
-- https://neovide.dev/configuration.html
|
||||||
|
vim.o.guifont = "Monaspace Neon:h12"
|
||||||
|
|
||||||
|
vim.g.neovide_scale_factor = 1.0
|
||||||
|
vim.g.neovide_padding_top = 0
|
||||||
|
vim.g.neovide_padding_bottom = 0
|
||||||
|
vim.g.neovide_padding_right = 0
|
||||||
|
vim.g.neovide_padding_left = 0
|
||||||
|
|
||||||
|
-- controls the blur radius on the axes of floating windows
|
||||||
|
vim.g.neovide_floagin_blur_amount_x = 2.0
|
||||||
|
vim.g.neovide_floagin_blur_amount_y = 2.0
|
||||||
|
|
||||||
|
-- whether or not floating windows should have a shadow border
|
||||||
|
vim.g.neovide_floating_shadow = true
|
||||||
|
|
||||||
|
-- the logical stacking height of floating windows
|
||||||
|
vim.g.neovide_floating_z_height = 10
|
||||||
|
|
||||||
|
-- how long it takes for scrolling text to animate
|
||||||
|
vim.g.neovide_scroll_animation_length = 0.15
|
||||||
|
|
||||||
|
vim.g.neovide_hide_mouse_when_typing = true
|
||||||
|
|
||||||
|
-- always use dark mode
|
||||||
|
vim.g.neovide_theme = 'dark'
|
||||||
|
|
||||||
|
vim.api.nvim_set_keymap('n', '<F11>', ":let g:neovide_fullscreen = !g:neovide_fullscreen<CR>", {})
|
Loading…
Reference in New Issue