You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
920 B
Lua
30 lines
920 B
Lua
6 months ago
|
-- 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>", {})
|