Skip to content

Commit 2ec03c4

Browse files
authored
Merge pull request projekt0n#260 from projekt0n/feat/airline-themes
feat: Added Airline themes
2 parents 20a949d + f6efb41 commit 2ec03c4

13 files changed

+50
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### What's New?
1111

12+
- Included Airline themes Fixed #20
13+
- CI: Get and update primer primitives automatically #253
14+
1215
### Changes
1316

1417
### Issues Fix

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,7 @@ This command will attach an autocmd to the current buffer that executes on `Buff
579579
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
580580
- [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
581581
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
582+
- [vim-airline](https://github.com/vim-airline/vim-airline)
582583
- [vim-gitgutter](https://github.com/airblade/vim-gitgutter)
583584
- [which-key.nvim](https://github.com/folke/which-key.nvim)
584585

@@ -594,6 +595,10 @@ vim.cmd('colorscheme github_dark')
594595
require('lualine').setup({ ... })
595596
```
596597

598+
### Airline
599+
600+
Set your airline colorscheme with `:AirlineThemes` vim command.
601+
597602
## Syntax highlight groups
598603

599604
This section will help you determine what highlight group is being applied to a piece of syntax. These sections will
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lua require('github-theme.util.airline')('github_dark')
2+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_dark_colorblind')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_dark_high_contrast')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_dark_dimmed')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_dark_high_constrast')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_dark_tritanopia')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_light')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('github-theme.util.airline')('github_light_colorblind')

0 commit comments

Comments
 (0)