Skip to content

Commit 5372185

Browse files
authored
Massive theme overhaul (#62)
* progress on overhaul * finish scrutinization of languages existing in old colors file * remove markdown code block highlight due to broken upstream syntax * add user config globals * update issue and pull request templates * small fixes * fix "illegal value" error when using overrides * actually fix the attribute filter this time * add git commit diff colors. closes #46 * remove unnecessary duplicate * set SignColumn explicitly * Add a helpfile (#64) * Ignore the tags file generated by :helptags * Write the help file
1 parent 0743d3d commit 5372185

File tree

5 files changed

+607
-194
lines changed

5 files changed

+607
-194
lines changed

.github/issue_template.md

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,45 @@
1-
> If you're reporting an UI issue, make sure you take a screenshot that shows the actual bug.
1+
<!--
2+
Thanks for your interest in reporting an issue.
3+
4+
Before submitting, please refer to the following common issues and solutions:
5+
6+
Running vim in a terminal?
7+
- Try adding `set termguicolors` to your vimrc.
8+
9+
Running vim with tmux?
10+
- Be sure you have terminal-overrides to enable truecolor (if supported in your term)
11+
- Be sure your `default-terminal` is set to, ideally, `tmux-256color`. If your OS doesn't
12+
have `tmux-256color` terminfo files, google them and add them using `tic`
13+
14+
Having issues with font styles (italic, bold, underline)?
15+
- Be sure your terminal supports these styles.
16+
- If running tmux, see tmux section.
17+
- If all else fails, disable the style by setting `let g:dracula_<style-name> = 0`
18+
in your vimrc, where `<style-name>` is one of (`italic`, `bold`, `underline`, `undercurl`, `inverse`)
19+
20+
If the above did not resolve your issue, please complete all fields of the form below.
21+
-->
22+
23+
### What happened
24+
25+
### What I expected to happen
26+
27+
### Screenshot
28+
29+
### Machine Info
30+
<!--
31+
if on a *nix system, please provide the output of `uname -a` for OS field
32+
-->
33+
- **Vim type (`vim`/`gvim`/`neovim`)**:
34+
- **Vim version**:
35+
- **OS**:
36+
- **Terminal/Terminal Emulator/VTE**:
37+
- **`TERM` environment variable**:
38+
39+
### Additional Info
40+
<!--
41+
If using Tmux, please provide the output of `tmux info`
42+
43+
If having issues with text rendering, please provide the output of `infocmp`
44+
-->
45+

.github/pull_request_template.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
> If you're fixing a UI issue, make sure you take two screenshots. One that shows the actual bug and another that shows how you fixed it.
1+
<!--
2+
If you're fixing a UI issue, make sure you take two screenshots.
3+
One that shows the actual bug and another that shows how you fixed it.
4+
-->
5+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
doc/tags

0 commit comments

Comments
 (0)