Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlphaTechnolog/onedarker.nvim
A beautiful onedark based colorscheme for neovim (maked with lua and extracted from the lunarvim project)
https://github.com/AlphaTechnolog/onedarker.nvim
colorscheme lua neovim nvim onedark onedarker vim
Last synced: 3 months ago
JSON representation
A beautiful onedark based colorscheme for neovim (maked with lua and extracted from the lunarvim project)
- Host: GitHub
- URL: https://github.com/AlphaTechnolog/onedarker.nvim
- Owner: AlphaTechnolog
- Created: 2021-11-18T20:44:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-11T20:27:37.000Z (almost 3 years ago)
- Last Synced: 2024-05-11T01:31:53.677Z (6 months ago)
- Topics: colorscheme, lua, neovim, nvim, onedark, onedarker, vim
- Language: Lua
- Homepage:
- Size: 671 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Onedarker
Onedarker is a beautiful custom theme based on
the awesome onedark colors.> This colorscheme is extracted from the lunarvim project
> This is my custom build for the onedarker colorscheme
![onedarker-2](./screenshots/onedarker_2.png)
## External plugins support
This colorscheme has support for this plugins:
- Treesitter
- diff
- Git
- highlights
- LSP
- markdown
- Notify
- palette
- Whichkey## Getting started
To use this you can use `vim-plug`, `packer`, etc.
### With Packer
Put this on your packer config:
```lua
use {"AlphaTechnolog/onedarker.nvim"}
```### With Vim Plug
With `vim-plug` you can use this:
```vim
Plug 'AlphaTechnolog/onedarker.nvim'
```## Activing the colorscheme
You can use the `colorscheme` sentence:
```vim
colorscheme onedarker
```Or with lua
```lua
require('onedarker')
```## Some configuration variables
You can customize the onedarker look with this variables:
**NOTE**: The next example contains the default values of
these variables### With lua
```lua
vim.g.onedarker_transparent_background = true
vim.g.onedarker_italic_comments = true
vim.g.onedarker_italic_keywords = true
vim.g.onedarker_italic_functions = true
vim.g.onedarker_italic_variables = true
```### With vim script
```vim
let g:onedarker_transparent_background = true
let g:onedarker_italic_comments = true
let g:onedarker_italic_keywords = true
let g:onedarker_italic_functions = true
let g:onedarker_italic_variables = true
```## Evil Lualine
I have a preincorpored lualine config for make more beautiful (my own style for lualine).
You can active it with lua like this:```lua
require'onedarker.evil_lualine'
```## Screenshots
![onedarker-1](./screenshots/onedarker_1.png)
![onedarker-2](./screenshots/onedarker_2.png)