Commit graph

40 commits

Author SHA1 Message Date
Copilot 7e7eff411f
Fix Neovim startup crash from undefined deepblue highlight color (#72)
Closes #71.

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-07-12 10:31:32 +02:00
OKWN d3dbb47721
feat(gotham.vim): add missing highlight groups + tmux troubleshooting docs 2026-05-27 11:48:59 +02:00
Vin Howe 5018761ab1 Use htmlBold color for htmlBoldItalic 2020-10-22 22:48:26 -06:00
Vin Howe de44313bb5 Add bold, italic, bold/italic formatting for Markdown, HTML 2020-10-19 16:05:15 -06:00
IK 56fc09d8f5 Add check to 256 color about vim (#52) 2019-12-08 17:05:45 +01:00
Felix Cobos a4d2aebfe1 Change color of cursor over parenthesis (#46)
Closes #44.
2017-10-28 19:52:38 +02:00
Sebastian Klatt 306a00eb18 Add neomake highlighting (#45) 2017-10-16 15:11:50 +02:00
Seth VanHeulen 6cf3040a20 Removed essentially duplicate color (#36) 2017-05-14 15:22:24 +02:00
Andrea Leopardi f46412d4f9 Revert "Add coloring for the Function group (#33)"
This reverts commit f41baedbd8.
2017-03-06 17:58:40 +01:00
shmerl f41baedbd8 Add coloring for the Function group (#33) 2017-01-31 21:54:45 +01:00
Qiming zhao ad93980da4 Better highlight for sign of ALE (#31)
https://github.com/w0rp/ale
2016-11-27 11:02:53 +01:00
keremc a432e12771 Don't use the "bright" colors in :terminal (#30) 2016-09-08 12:37:36 +02:00
keremc 68760b3897 Override neovim :terminal colors (#29) 2016-09-06 11:05:04 +02:00
Cenk Altı 4564469fac Wrong color for Error and WarningMsg (#28)
Closes #27.
2016-04-20 08:52:56 +02:00
Pierre Douyon cb6b24d1e2 Add support for more diff hl-groups: (Added/Changed/Removed/Subname) 2016-02-26 13:37:00 -05:00
yelfathi dbf64dddf1 Add syntax support for Python (klen/python-mode) 2015-09-30 09:19:25 +02:00
Ben Edwards b2fcd39a0b refactor: Unite support without touching internals
g:unite_source_grep_search_word_highlight takes a highlight group as an
argument, so create our own highlight group and assign it, rather than
override the internal highlight group name directly.
2015-03-12 12:22:07 +00:00
Andrea Leopardi fecea14417 Add (very small) support for unite.vim
Thanks to the help of @benjumanji, I added custom highlighting for unite.vim's
grep search results (white fg on a green bg so that they stand out).
This may not be a very stable solution since it relies on unite.vim internals,
but hey, c'est la vie.
2015-03-11 15:41:52 +01:00
Andrea Leopardi 9eece9d676 Darken the SpecialKey group
Closes #16

The `SpecialKey` group was highlighted as "base4", which admittedly was a little
too bright. "base3" should be good.
2015-01-23 12:56:37 +01:00
Andrea Leopardi 432315077e Highlight the Conceal group 2014-11-18 01:06:54 +01:00
Andrea Leopardi 4b07e83e7c Even out the regular and the 256 colors versions
Some stuff was missing from the 256 colors version:

- the improved diffing from #13
- the directory highlighting
2014-10-12 19:19:19 +02:00
Adam Rutkowski cf66c20843 Improve diff highlights 2014-10-11 22:04:00 +02:00
Jack Bracewell dcd5a50808 Make CursorColumn the same as CursorLine
- These two highlight groups are the same by default, should keep
them that way.

- The motivation behind this is to make the scheme more compatible
with the vim-paren-crosshairs plugin
2014-10-09 14:20:53 +01:00
Andrea Leopardi 37f2b4418b Support 'fillchars'
Since I don't use the `fillchars` options (I have no chars separating vertical
splits, I find the bg highlighting to be enough), I set the same bg and fg
colors for the VertSplit group. This commit fixes this by highlighting VertSplit
with the same bg as SignColumn and LineNr and with a slightly lighter fg.

These ideas come from #10 from @wedgwood. Thanks!
2014-10-09 14:49:11 +02:00
Andrea Leopardi 6826554c3a Highlight the status line properly
Close #9

I thought the foreground color of StatusLine and StatusLineNC impacted the space
in the status line between two vertical splits. I was wrong; that's the
background color.

Before this commit, the status line in an inactive window was "invisible" (same
bg and fg).  I made the default status line a little brighter and changed the
fg of the inactive status line so that now it works like it should.
2014-10-09 09:43:58 +02:00
Andrea Leopardi 855270f34d Fix a *very* minor but critical typo
Close #7

`g:colors_name` was set to 'gotham-256' instead of 'gotham256' as the result of
a typo. Bad!
2014-10-07 11:59:58 +02:00
Andrea Leopardi eba6e60bbf Add some highlight groups and fix some minor bugs
Close #6

- I highlighted the 'Directory' group
- I gave the 'Cursor' group a foreground color because, without one, Normal fg
  would be the same as Cursor bg, causing the text to be invisible (only in GUI)
  vim
2014-10-07 10:18:16 +02:00
Andrea Leopardi a461ff0ed5 Add ColorColumn support to the 256 colors version too 2014-10-03 17:10:13 +02:00
Andrea Leopardi b906b7ab25 Merge branch 'master' of github.com:whatyouhide/vim-gotham
* 'master' of github.com:whatyouhide/vim-gotham:
  Add ColorColumn support
2014-10-03 17:08:51 +02:00
Andrea Leopardi 4d44c41565 Support for 256 colors for Airline, update docs 2014-10-03 17:07:54 +02:00
Andrea Leopardi 02f15ad37c Add a 256 colors version of the colorscheme
@scottchiefbaker proposed a 256 colors version of Gotham in #1, but I didn't
feel like losing the accuracy of the tailored 16 colors against the portability
and ease of use (no terminal emulator colorscheme needed) of the 256 colors.

This commit adds a gotham-256 version of the colorscheme so that everyone is
able to choose what version to use.

There are a ton of things that could be extracted (maybe into `autoload/`), but
for now I'm leaving this untouched in order to avoid extra boot time when
loading an external file in `autoload/`.
2014-10-03 16:46:13 +02:00
George Czabania 6144dd77ac Add ColorColumn support 2014-10-03 10:17:27 +13:00
Andrea Leopardi 38cdf5d731 Vim-only repository 2014-09-29 12:22:11 +02:00
Andrea Leopardi 873c34c4db Unify into a single repository 2014-09-29 11:55:03 +02:00
Andrea Leopardi 3e6010da87 Minor adjustments, support for native tabline 2014-09-28 21:56:13 +02:00
Andrea Leopardi 724f875c2a Markdown-tailored highlights 2014-09-27 20:21:25 +02:00
Andrea Leopardi 32dfe8d42a Diffing, spelling and README 2014-09-27 20:16:55 +02:00
Andrea Leopardi 7b105befdb Terminal colors, yay (at least with iTerm) 2014-09-27 19:24:20 +02:00
Andrea Leopardi 58c2a105e5 Add (gui) highlighting for the tab line 2014-09-26 00:13:22 +02:00
Andrea Leopardi 3945be957b Refine colors and add an airline theme 2014-09-25 23:59:13 +02:00