diff options
author | 2017-02-04 12:07:09 +0100 | |
---|---|---|
committer | 2017-02-04 12:07:09 +0100 | |
commit | a5c3459af0910757ab7fc5162e5bd5a9775eb224 (patch) | |
tree | ea46af6ac6357a32fab4f69518829bee0ceaa242 | |
parent | dc6149f4375040f3c7b2a5fea99e15aacce6c807 (diff) | |
download | nord-vim-a5c3459af0910757ab7fc5162e5bd5a9775eb224.tar.gz |
GHI-#14 Implement support for the "jedi-vim" plugin
This actually includes two groups which had to be adjusted.
Both are used for a parameter popup in functions. The background color
and the color of the current parameter at the cursor are now colored
explicitly instead of the default syntax link to the "TabLine" and
"CursorLine" groups.
-rwxr-xr-x | colors/nord.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index d461194..31b8543 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -373,6 +373,10 @@ call s:hi("GitGutterChange", s:nord13_gui, "", s:nord13_term, "", "", "") call s:hi("GitGutterChangeDelete", s:nord11_gui, "", s:nord11_term, "", "", "") call s:hi("GitGutterDelete", s:nord11_gui, "", s:nord11_term, "", "", "") +" davidhalter/jedi-vim +call s:hi("jediFunction", s:nord4_gui, s:nord3_gui, "", s:nord3_term, "", "") +call s:hi("jediFat", s:nord8_gui, s:nord3_gui, s:nord8_term, s:nord3_term, "bold,underline", "") + " NERDTree " > scrooloose/nerdtree call s:hi("NERDTreeExecFile", s:nord7_gui, "", s:nord7_term, "", "", "") |