Commit Graph

116 Commits

Author SHA1 Message Date
Josh Dick
607dfdc84d Add Neovim-specific terminal color configuration. (#297)
Fixes #255.
2022-03-07 18:30:59 +00:00
Olivier Roques
cc8ecccd32 Update Neovim LSP colors (#288) 2021-09-24 15:51:23 -10:00
Josh Dick
ee4b22cbae chore: Update old "master" branch refernces to use "main" instead (#277) 2021-07-12 02:29:02 -04:00
Josh Dick
ad9610cdab Overhaul 16-color styling (#271)
Includes regenerated terminal themes.
2021-07-11 20:00:38 -04:00
Josh Dick
4bd214fbcb chore(plugins): Add list of supported plugins to README, update companion links (#275) 2021-07-11 18:07:22 -04:00
Josh Dick
7d1f6d1476 feat(plugin): Add support for lewis6991/gitsigns.nvim (#274)
Resolves #272.
2021-07-11 17:44:52 -04:00
Josh Dick
1794dd73dd fix(nvim-lsp): Make nvim-lsp highlighting consistent with existing related highlighting (#273) 2021-07-11 17:35:59 -04:00
Josh Dick
a4dadcd2a3 fix: prabirshrestha/vim-lsp is not Neovim LSP :) (#270) 2021-06-22 01:09:23 -04:00
Josh Dick
5f81e96d06 Improve Neovim LSP highlighting (#269) 2021-06-22 00:56:29 -04:00
Josh Dick
d42ae8e741 feat: Add higlight groups for neoclide/coc.nvim (#268)
* Add higlight groups for neoclide/coc.nvim
2021-06-22 00:41:55 -04:00
Dan Rodriguez
b70ed293f3 Do not overwrite scheme-wide colors with extend_highlight (#249)
Fixes #220

Create a copy of color dictionary and apply changes to it instead of
the original

Ex: If extend_highlight is called on a Highlight Group with default
purple foreground, don't overwrite values in the dictionary assigned to
purple.fg, e.g., {'gui': '#C678DD', 'cterm': '170', 'cterm16': '5'}.
Instead make a copy of the dictionary, apply changes to the copy, and
assign the altered copy to the user-specified Highlight Group.
2021-02-25 13:04:36 -05:00
Olivier Roques
94ff495eac Add support for Neovim LSP (#245)
* Add support for Neovim LSP

* Create a Neovim-specific highlighting fold
2020-12-13 20:24:18 -05:00
Josh Dick
935016df26 Consistent highlighting for special characters (#244)
`SpecialChar` currently has no highlighting, but the majority of
other existing `Special` characters in the theme are highlighted as
dark yellow (`htmlSpecialChar`, `texSpecialChar`.)

So, add dark yellow highlighting for `SpecialChar` and change
`perlSpecialString` accordingly, so special characters are highlighted
consistently across all languages.

Resolves #222.

Closes #237.
2020-12-01 18:33:03 -05:00
Josh Dick
68a18c7eed Adds highlighting for dense-analysis/ale plugin. (#242)
Resolves #194.
2020-12-01 18:12:07 -05:00
Josh Dick
727f7ede99 Attempt to address #221 (#233) 2020-08-05 02:47:50 -04:00
Josh Dick
caa8788014 parentheses in terminal the same as in gui (#212) 2020-03-05 20:11:05 -05:00
Josh Dick
2b0e71843e Add 'htmlTagN' highlight group. (#206)
Closes #205.
2020-01-30 12:42:43 -05:00
Josh Dick
a5c74e9d18 HTML/Markdown highlighting tweaks. (#192)
Better compatibility with plasticboy/vim-markdown.

Addresses:

* https://github.com/plasticboy/vim-markdown/issues/388
* https://github.com/plasticboy/vim-markdown/issues/461
* https://www.reddit.com/r/neovim/comments/e04207/what_are_the_best_maintained_and_most_extensive/f8gwko0?utm_source=share&utm_medium=web2x
2019-11-24 16:41:54 -05:00
Sebastian S
ef4a37a95b Adjust go highlighting (#170)
Make go highlighting more similar to that of other languages:
* function calls should be blue
* types should be yellow to distinguish them from keywords
* make special keywords struct and interface also cyan, like builtins
2019-06-18 14:34:03 -04:00
Emilie Sicilia
7f36f83f13 Add specifics highlights for Go (#165)
* add specifig configuration for Go

* set every go type to purple

* Highlight golang builtin functions
2019-05-01 17:46:49 -04:00
Josh Dick
723c616d4b Remove stray comment character 2019-04-02 10:33:13 -04:00
donkeyfish
ca2ae4d6de Added support for .tex files (#159)
* Added support for .tex files

* Added spacing for consistency with rest of theme. Removed bold for consistency with rest of theme. Both for TeX coloring only.
2019-04-02 10:29:12 -04:00
Josh Dick
04ba47974e Don't write to the "a:" dict per https://github.com/vim/vim/pull/3929 .
Closes #148.
2019-02-12 15:43:09 -05:00
Josh Dick
4383697909 Add :Termdebug highlight groups.
Fixes #136.
2019-01-13 20:15:26 -05:00
Josh Dick
fbf5af4950 Tweak and document g:onedark_hide_endofbuffer 2019-01-09 18:25:28 -05:00
Theodor Thornhill
62bcd5ffbb Add optional setting for end-of-buffer tildes (#142)
* Added optional setting for end of buffer tildes

* Use get() instead for optional value)

* Moved block and changed default value
2019-01-09 18:21:01 -05:00
Theodor Thornhill
6d96889eb5 Added terminal statusbar highlight group (#138) 2019-01-08 16:24:24 -05:00
Michael Jarvis
77c7b00eb1 Add a tweak for fish shell scripts (#135)
In the fish shell, the keyword 'end' is used both as a keyword and for
ending conditional logic.

For example, in the trivial function below, the word `end` is used to
terminate the "if" conditional, and it's also used as a keyword to
indicate the end of the function.

This tweak makes the word the same color in both places. I selected
purple to match the Onedark scheme in Atom.

```fish
function foo

    if not string length $argv
        echo "I got nothing."
    end

end
```
2018-12-24 15:56:19 -05:00
Josh Dick
07ff25c34f Add terminal colors. 2018-08-06 16:08:45 -04:00
Josh Dick
6e219a958b Revise DiffChange/DiffText to be less ambiguous and less visually loud.
Closes #126.
2018-06-23 23:24:19 -04:00
Josh Dick
4f0292533a Add plugin highlighting for easymotion/vim-easymotion. Closes #116. 2018-02-23 01:48:04 -05:00
Josh Dick
8b5544e29c Enhance the implementation of onedark#extend_highlight and improve the README 2017-11-29 19:16:42 -05:00
Josh Dick
88b7d34306 Nitpicky tweaks 2017-11-28 18:50:51 -05:00
Kristijan Husak
3eb31282e5 Expose function for extending highlight group. 2017-11-27 12:02:11 +01:00
Josh Dick
1552d3e8ec In diff mode, for cursorline, use underline styling instead of background styling to improve readability.
Fixes #107.
2017-08-15 19:19:11 -04:00
Josh Dick
9a269a5419 Comment changes; use highlight group descriptions from NeoVim for QuickFixLine/Search 2017-07-13 19:13:03 -04:00
Max Claus Nunes
47549daf34 Add QuickFixLine highlight group styling (#105)
Supports `QuickFixLine` highlighting added in 2102035488 and https://github.com/neovim/neovim/pull/5156.
2017-07-13 19:06:37 -04:00
Josh Dick
b5827a2842 Allow users to override color definitions. Closes #101.
Thanks @FredDeschenes!
2017-05-15 14:40:25 -04:00
Josh Dick
8d2720a7a7 Tweaks and Updates (#100)
* Change comment style to use folds, in turn necessitating changing the template delimeters

* Add "Underlined" styling

* Update the gui gutter foreground color

* Automatically generate terminal color palette files

* README.md: Add 'Relatives of onedark.vim' section

* README.md tweaks to (hopefully) make installation and troubleshooting easier.

* README.md: Update preview image information

* README.md: Re-update preview image information

* README.md: Fixed wording about italics troubleshooting screenshot

* README.md: "setting" -> "option" where appropriate

* README.md: Fix typos
2017-05-11 11:22:53 -04:00
Josh Dick
22c8bb6067 Move set background=dark to the end of the colorscheme to work around a Vim oddity. 2017-05-09 19:23:47 -04:00
Steve Dignam
32eee7a26b Updated git commit color so header overflow is red (#96) 2017-04-25 16:36:37 -04:00
Josh Dick
13eb0d70ea Add styling. Fixes #95. 2017-04-19 21:11:37 -04:00
Josh Dick
f75c24c3bd Change IncSearch styling so that it's different from Search. Fixes #94. 2017-03-24 16:43:23 -04:00
Simon Smith
bb671ee5a1 Highlight JS generator asterisk (#93) 2017-03-14 01:12:44 -04:00
Simon Smith
72d319fbec Update LESS syntax highlighting (#92) 2017-03-06 08:49:46 -08:00
Simon Smith
0099abf4f3 Update Sass syntax highlighting (#88)
vim-polyglot has removed the sass syntax highlighting in favour of a
[third party scss version](https://github.com/sheerun/vim-polyglot/pull/173).
This adds few colours to keep it consistent.
2017-03-01 16:46:18 -08:00
Simon Smith
053029a621 Reorder code block 2017-02-27 15:57:45 +00:00
Simon Smith
627ba62669 Add minor improvement to Go syntax 2017-02-27 15:56:05 +00:00
Simon Smith
4921d4d625 Update Perl syntax highlighting
Add comment colour for usage blocks
https://github.com/joshdick/onedark.vim/pull/90#issuecomment-282690117
2017-02-27 15:50:14 +00:00
Vitaliy Viflinzider
8c3157684f Add Perl syntax highlighting
Fixes #91
Fixes #90
2017-02-27 15:46:31 +00:00