From 1ddc782e1efb627bb67d5b5598ee0e0a156bb03a Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 14 Apr 2019 07:06:35 +0200 Subject: Add theme config for bolder vertical split line Previously the `VertSplit` (1) (`:help VertSplit`) key used `nord1` as background color by default making the line appear to be very lumpy. This commit changes this style to use `nord0` as bavkground instead to visually merge with the background so only the separator charaters are a visual indiciator for the split line whih makes it look more lightweight and unclutters the overall appeareance. To allow user who liked the previous implementation to keep the style this commit also adds a new `nord_bold_vertical_split_line` theme config that can be assigned to `1` to achieve the legacy design. The README also include information and hints how to change the separator character by customizing Vim's `fillchars` (2) (`:help fillchars`) variable. References: (1) http://vimdoc.sourceforge.net/htmldoc/syntax.html#hl-VertSplit (2) http://vimdoc.sourceforge.net/htmldoc/options.html#'fillchars' GH-132 --- README.md | 16 ++++++++++++++++ .../scrot-config-bold-vertical-split-line-default.png | Bin 0 -> 20347 bytes assets/scrot-config-bold-vertical-split-line.png | Bin 0 -> 20260 bytes colors/nord.vim | 11 ++++++++++- 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 assets/scrot-config-bold-vertical-split-line-default.png create mode 100644 assets/scrot-config-bold-vertical-split-line.png diff --git a/README.md b/README.md index 06157d0..9989e55 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with su - [Comment Contrast](#comment-contrast) - [Uniform diff Background](#uniform-diff-background) - [Line number background](#line-number-background) + - [Bold Vertical Split Line](#bold-vertical-split-line) - [Plugin Support](#plugin-support) - [UI Plugins](#ui-plugins) - [Language Plugins](#language-plugins) @@ -259,6 +260,20 @@ let g:nord_cursor_line_number_background = 1

No background (default)

Enabled background

+### Bold Vertical Split Line + +Enables a bolder vertical split line by using `nord1` as background. + +```viml +let g:nord_bold_vertical_split_line = 1 +``` + +To change the separator character used to display the vertical line please see the documentation about Vim's [`fillchars`][vdoc-fillchars] variable: `:help fillchars` + +

With base editor background (default)

+ +

With enabled bold nord1 background

+ ## Plugin Support Nord Vim provides support for many third-party language- and UI plugins. @@ -332,3 +347,4 @@ Please report issues/bugs, feature requests and suggestions for improvements to [scrot-lang-ruby]: https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-lang-ruby.png [scrot-readme-default-profile]: https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-readme-default-profile.png [scrot-readme-lazy-profile-change]: https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-readme-lazy-profile-change.png +[vdoc-fillchars]: http://vimdoc.sourceforge.net/htmldoc/options.html#'fillchars' diff --git a/assets/scrot-config-bold-vertical-split-line-default.png b/assets/scrot-config-bold-vertical-split-line-default.png new file mode 100644 index 0000000..bbda688 Binary files /dev/null and b/assets/scrot-config-bold-vertical-split-line-default.png differ diff --git a/assets/scrot-config-bold-vertical-split-line.png b/assets/scrot-config-bold-vertical-split-line.png new file mode 100644 index 0000000..05d9104 Binary files /dev/null and b/assets/scrot-config-bold-vertical-split-line.png differ diff --git a/colors/nord.vim b/colors/nord.vim index 1bbfaf8..9b4ad25 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -122,6 +122,10 @@ if !exists("g:nord_cursor_line_number_background") let g:nord_cursor_line_number_background = 0 endif +if !exists("g:nord_bold_vertical_split_line") + let g:nord_bold_vertical_split_line = 0 +endif + function! s:hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) if a:guifg != "" exec "hi " . a:group . " guifg=" . a:guifg @@ -248,7 +252,12 @@ call s:hi("TabLineSel", s:nord8_gui, s:nord3_gui, s:nord8_term, s:nord3_term, "N "+--- Window ---+ call s:hi("Title", s:nord4_gui, "", "NONE", "", "NONE", "") -call s:hi("VertSplit", s:nord2_gui, s:nord1_gui, s:nord3_term, s:nord1_term, "NONE", "") + +if g:nord_bold_vertical_split_line == 0 + call s:hi("VertSplit", s:nord2_gui, s:nord0_gui, s:nord3_term, "NONE", "NONE", "") +else + call s:hi("VertSplit", s:nord2_gui, s:nord1_gui, s:nord3_term, s:nord1_term, "NONE", "") +endif "+----------------------+ "+ Language Base Groups + -- cgit v1.2.3-70-g09d2