2023-01-10 21:11:37 +01:00
|
|
|
# gruber-darker.nvim
|
|
|
|
|
2023-01-11 04:13:59 +01:00
|
|
|
_A modern Neovim port of a deftheme [adaptation][gruber-darker-theme] of an Emacs
|
2023-01-11 03:14:06 +01:00
|
|
|
[port][gruber-darker] of a BBEdit [colorscheme][gruber-dark]_
|
2023-01-10 21:11:37 +01:00
|
|
|
|
2023-03-14 02:49:38 +01:00
|
|
|
**This is a work in progress**
|
2023-01-11 04:08:54 +01:00
|
|
|
|
2023-01-10 21:27:06 +01:00
|
|
|
## Installation
|
|
|
|
|
2023-03-14 02:49:38 +01:00
|
|
|
### Lazy
|
|
|
|
|
|
|
|
```lua
|
|
|
|
{ "blazkowolf/gruber-darker.nvim" }
|
|
|
|
```
|
|
|
|
|
2023-01-10 21:27:06 +01:00
|
|
|
### Packer
|
|
|
|
|
|
|
|
```lua
|
2023-01-11 04:12:39 +01:00
|
|
|
use "blazkowolf/gruber-darker.nvim"
|
2023-01-10 21:27:06 +01:00
|
|
|
```
|
|
|
|
|
2023-03-14 02:49:38 +01:00
|
|
|
### Plug
|
|
|
|
|
|
|
|
```vim
|
|
|
|
Plug 'blazkowolf/gruber-darker.nvim'
|
|
|
|
```
|
|
|
|
|
2023-01-11 03:14:06 +01:00
|
|
|
Then, somewhere in your `init.lua`, set the colorscheme like this
|
|
|
|
|
|
|
|
```lua
|
|
|
|
vim.cmd.colorscheme("GruberDarker")
|
|
|
|
```
|
|
|
|
|
2023-03-13 12:31:31 +01:00
|
|
|
## Configuration
|
|
|
|
|
2023-03-14 02:49:38 +01:00
|
|
|
Configuration options can be changed by calling `setup()`
|
|
|
|
with your preferences prior to loading the colorscheme.
|
2023-03-13 12:31:31 +01:00
|
|
|
|
|
|
|
```lua
|
2023-03-14 02:49:38 +01:00
|
|
|
-- Config defaults
|
2023-03-13 12:31:31 +01:00
|
|
|
require("gruber-darker").setup({
|
2023-03-14 02:49:38 +01:00
|
|
|
bold = true,
|
|
|
|
italic = true,
|
|
|
|
underline = true,
|
|
|
|
comment_italics = true,
|
2023-03-13 12:31:31 +01:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2023-03-14 02:49:38 +01:00
|
|
|
## Credits
|
2023-01-11 03:14:06 +01:00
|
|
|
|
2023-01-21 18:24:49 +01:00
|
|
|
These repositories were great knowledge sources and their
|
|
|
|
inspiration helped immensely with the development of this plugin.
|
2023-01-11 03:14:06 +01:00
|
|
|
|
|
|
|
- [rexim/gruber-darker-theme][gruber-darker-theme]
|
|
|
|
- [folke/tokyonight.nvim][tokyonight]
|
2023-03-14 02:49:38 +01:00
|
|
|
- [drsooch/gruber-darker-vim][gruber-darker-vim]
|
2023-01-11 03:14:06 +01:00
|
|
|
|
2023-01-10 21:27:06 +01:00
|
|
|
[gruber-darker-theme]: https://github.com/rexim/gruber-darker-theme
|
2023-01-10 21:30:41 +01:00
|
|
|
[gruber-darker]: https://jblevins.org/projects/emacs-color-themes/gruber-darker-theme.el.html
|
2023-01-10 21:27:06 +01:00
|
|
|
[gruber-dark]: http://daringfireball.net/projects/bbcolors/schemes/
|
2023-01-11 03:14:06 +01:00
|
|
|
[tokyonight]: https://github.com/folke/tokyonight.nvim
|
|
|
|
[gruber-darker-vim]: https://github.com/drsooch/gruber-darker-vim
|