Add in fzf colors.

This commit is contained in:
Michael Welford 2018-02-04 10:36:37 +10:30
parent a3a4f2aa3c
commit db2be73d68
2 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,6 @@
" ===============================================================
" falcon
"
"
" URL: https://github.com/fenetikm/falcon
" Author: Michael Welford
" License: MIT

15
plugin/falcon.vim Normal file
View File

@ -0,0 +1,15 @@
" required as colors will come from terminal without
let g:fzf_colors =
\ { 'fg': ['fg', 'Comment'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Normal'],
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
\ 'hl+': ['fg', 'Keyword'],
\ 'info': ['fg', 'PreProc'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'Conditional'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }