Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
✍️ Changelogs & Minimal config example
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Jun 20, 2021
1 parent 1e363e7 commit f2bce67
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 17 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- `Linting` Github Action init
- `Makefile, .lua-format, .luacheckrc` init
- format .lua code with (lua-format)[https://github.com/Koihik/LuaFormatter]
- `kitty` tabs color changed
- onedark setting using `reqiure("onedark.config")` [monsonjeremy/onedark.nvim#5]
- **Warning** on `vim.g` configuration
- Configure plugin in lua using `require('onedark').setup({})` **[fix monsonjeremy/onedark.nvim#5]**
- Minimal config example added inside [README.md#minimal](./README.md#minimal)
- Linting Github Action init
- Format .lua code with [lua-format](https://github.com/Koihik/LuaFormatter)
- **kitty tab** colors are changed
- Init: `Makefile, .lua-format, .luacheckrc`

### Changed

- Removed function `require('onedark').colorscheme()`
- Colorscheme **autoload removed** from `colors/onedark.vim`
- **VertSplit** & **Inactive StatusLine** `fg` color changed to `bg_visual`
- configuration docs updated inside README.md
- StatusLine bug note inside [README.md#usage](./README.md#-usage)
- Configuration docs updated inside [README.md#configuration](./README.md#-configuration)

## [v0.0.1] - 14 June 2021

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ format:
@for file in `find . -name '*.lua'`;do lua-format $$file -i; done;

lint: $(onedark_path)
@luacheck $(onedark_path) --config .luacheckrc
@luacheck $(onedark_path)

check: format lint
38 changes: 28 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
<!-- Branding -->
<p align="center">
<img src="https://i.imgur.com/lNdBu1v.png" alt="onedark.nvim" />
<img src="https://i.imgur.com/lNdBu1v.png" alt="onedark.nvim" />
<br />
Atom's iconic One Dark theme for Neovim, written in Lua
</p>

<!-- Badges -->
<p align="center">
Atom's iconic One Dark theme for Neovim, written in Lua
</p>

<p align="center">
De-attach fork of <b><a href="https://github.com/monsonjeremy/onedark.nvim">monsonjeremy/onedark.nvim</a></b>
<!-- First Row -->
<a href="https://github.com/monsonjeremy/onedark.nvim">
<img alt="monsonjeremy/onedark.nvim" src="https://img.shields.io/badge/Fork%20of-monsonjeremy%2Fonedark.nvim-blue" />
</a>
<a href="https://github.com/ful1e5/onedark.nvim/actions">
<img alt="GitHub Action Linting" src="https://github.com/ful1e5/onedark.nvim/actions/workflows/lint.yml/badge.svg" width="102" />
</a>
</p>

## ✨ Features
Expand Down Expand Up @@ -151,7 +157,7 @@ set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{25

## 🌈 Extras

> To generate the configs `:luafile /lua/onedark/extra/init.lua`
> To generate the configs `make extra`
Extra color configs for **Kitty**, and **Alacritty** can be found in [extras](extras/). To use them, refer to their respective documentation.

Expand Down Expand Up @@ -205,6 +211,21 @@ require("onedark").setup({
<img src="https://imgur.com/oA5PjUb.png" alt="Italic fonts" />
</p>

### Minimal

```lua
require("onedark").setup({
hideInactiveStatusline = true,
darkSidebar = false,
darkFloat = false
-- ... your onedark config
})
```

<p align="center">
<img src="https://imgur.com/VSTW3Hr.png" alt="Minimal" />
</p>

### Telescope

<p align="center">
Expand All @@ -218,8 +239,6 @@ require("onedark").setup({
- [Wallpaper](https://hdqwalls.com/big-sur-4k-wallpaper)
- [dotfiles](https://github.com/ful1e5/dotfiles)

<!-- Support -->

## Support

<a href="https://www.buymeacoffee.com/Nt7Wg4V" >
Expand All @@ -231,7 +250,6 @@ require("onedark").setup({
Follow me on **[Twitter](https://twitter.com/ful1e5)**

<!-- Ninja -->

<p align="center">
<h1 align="center">(◣_◢)</h1>
</p>
Expand Down

0 comments on commit f2bce67

Please sign in to comment.