├── .github └── workflows │ └── default.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .stylua.toml ├── LICENSE ├── README.md ├── colors └── everforest.lua ├── doc └── everforest.nvim.txt ├── lua ├── everforest │ ├── colour_utility.lua │ ├── colours.lua │ ├── highlights.lua │ ├── init.lua │ ├── types.lua │ └── util.lua └── lualine │ └── themes │ └── everforest.lua ├── neovim.yml └── selene.toml /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/.stylua.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/README.md -------------------------------------------------------------------------------- /colors/everforest.lua: -------------------------------------------------------------------------------- 1 | require("everforest").load() 2 | -------------------------------------------------------------------------------- /doc/everforest.nvim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/doc/everforest.nvim.txt -------------------------------------------------------------------------------- /lua/everforest/colour_utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/colour_utility.lua -------------------------------------------------------------------------------- /lua/everforest/colours.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/colours.lua -------------------------------------------------------------------------------- /lua/everforest/highlights.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/highlights.lua -------------------------------------------------------------------------------- /lua/everforest/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/init.lua -------------------------------------------------------------------------------- /lua/everforest/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/types.lua -------------------------------------------------------------------------------- /lua/everforest/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/everforest/util.lua -------------------------------------------------------------------------------- /lua/lualine/themes/everforest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/lua/lualine/themes/everforest.lua -------------------------------------------------------------------------------- /neovim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/neovim.yml -------------------------------------------------------------------------------- /selene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neanias/everforest-nvim/HEAD/selene.toml --------------------------------------------------------------------------------