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

Commit

Permalink
👔 Kitty tab color changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Jun 16, 2021
1 parent df346d9 commit 98abd0f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 13 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

### 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

### Changed

- **VertSplit** & **Inactive StatusLine** `fg` color changed to `bg_visual`

## [v0.0.1] - 14 June 2021

### Added
Expand Down
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,13 @@ Extra color configs for **Kitty**, and **Alacritty** can be found in [extras](ex
## 📺 Screenshot

<p align="center">
<img src="https://imgur.com/Vm6wfB3.png" alt="onedark.nvim" />
<img src="https://imgur.com/tptzxgH.png" alt="onedark.nvim" />
</p>

### Default

<p align="center">
<img src="https://imgur.com/8KbGV7r.png" alt="Default fonts" />
</p>

### Normal
Expand All @@ -169,7 +175,7 @@ vim.g.onedark_italic_variables = false
```

<p align="center">
<img src="https://imgur.com/nEVfxVu.png" alt="Normal fonts" />
<img src="https://imgur.com/QZ0R0qC.png" alt="Normal fonts" />
</p>

### Italic
Expand All @@ -182,18 +188,19 @@ vim.g.onedark_italic_variables = true
```

<p align="center">
<img src="https://imgur.com/8rz9b2b.png" alt="Italic fonts" />
<img src="https://imgur.com/oA5PjUb.png" alt="Italic fonts" />
</p>

### Telescope

<p align="center">
<img src="https://imgur.com/eLs5Og5.png" alt="Telescope plugin" />
<img src="https://imgur.com/vgR9HRe.png" alt="Telescope plugin" />
</p>

## Useful Links

- [SF Mono Nerd-Font](https://github.com/epk/SF-Mono-Nerd-Font)
- [Kitty](https://sw.kovidgoyal.net/kitty)
- ~[SF Mono Nerd-Font](https://github.com/epk/SF-Mono-Nerd-Font)~ [Ubuntu Mono](https://design.ubuntu.com/font/)
- [Wallpaper](https://hdqwalls.com/big-sur-4k-wallpaper)
- [dotfiles](https://github.com/ful1e5/dotfiles)

Expand All @@ -205,6 +212,10 @@ vim.g.onedark_italic_variables = true
<img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" >
</a>

## Self Promotion

Follow me on **[Twitter](https://twitter.com/ful1e5)**

<!-- Ninja -->

<p align="center">
Expand Down
8 changes: 4 additions & 4 deletions extras/kitty_onedark_.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
cursor #abb2bf

# Tabs
active_tab_background #282c34
active_tab_foreground #abb2bf
inactive_tab_background #242b38
inactive_tab_foreground #5c6370
active_tab_background #61afef
active_tab_foreground #282c34
inactive_tab_background #abb2bf
inactive_tab_foreground #282c34
#tab_bar_background #20232A

# normal
Expand Down
8 changes: 4 additions & 4 deletions lua/onedark/extra/kitty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ function M.kitty(config)
cursor ${fg}
# Tabs
active_tab_background ${bg}
active_tab_foreground ${fg}
inactive_tab_background ${bg_highlight}
inactive_tab_foreground ${fg_gutter}
active_tab_background ${blue}
active_tab_foreground ${bg}
inactive_tab_background ${fg}
inactive_tab_foreground ${bg}
#tab_bar_background ${black}
# normal
Expand Down

0 comments on commit 98abd0f

Please sign in to comment.