From 665e022f9cfb52e3858eedb1afb7a0eda333d6f7 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Wed, 7 Feb 2024 11:44:11 -0600 Subject: [PATCH] Neovide config tweaks New version deprecated background_color and introduced transparent title bars for macOS with the `frame` option. --- config/neovide/config.toml | 1 + config/nvim/lua/config/options.lua | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 config/neovide/config.toml diff --git a/config/neovide/config.toml b/config/neovide/config.toml new file mode 100644 index 0000000..bd40b4a --- /dev/null +++ b/config/neovide/config.toml @@ -0,0 +1 @@ +frame = "transparent" diff --git a/config/nvim/lua/config/options.lua b/config/nvim/lua/config/options.lua index 06385ed..b9e88b3 100644 --- a/config/nvim/lua/config/options.lua +++ b/config/nvim/lua/config/options.lua @@ -42,5 +42,4 @@ vim.g["test#strategy"] = "toggleterm" -- Neovide if vim.g.neovide then vim.g.neovide_cursor_animation_length = 0 - vim.g.neovide_background_color = "#20252c" end