dotfiles/dot_config/nvim/lua/config/options.lua

10 lines
370 B
Lua
Raw Normal View History

2023-10-13 21:54:13 +02:00
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
if vim.g.neovide then
vim.g.neovide_cursor_animation_length = 0
vim.o.guifont = "BrutalistMono Nerd Font Regular:h16"
2023-11-15 15:57:38 +01:00
vim.g.neovide_theme = "dark"
2023-10-13 21:54:13 +02:00
end