We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccab8ed commit ab5d31cCopy full SHA for ab5d31c
1 file changed
lua/user/packer.lua
@@ -13,7 +13,17 @@ local packer_bootstrap = ensure_packer()
13
14
return require('packer').startup(function(use)
15
use 'wbthomason/packer.nvim'
16
- use 'neanias/everforest-nvim'
+ use {
17
+ "OurCodeBase/everforest-nvim",
18
+ config = function()
19
+ require("everforest").setup({
20
+ background = "hard",
21
+ ui_contrast = "low",
22
+ dim_inactive_windows = false,
23
+ better_performance = true,
24
+ })
25
+ end
26
+ }
27
if packer_bootstrap then
28
require('packer').sync()
29
end
0 commit comments