SQL theme tweaking.

This commit is contained in:
Michael Welford 2019-12-07 21:10:50 +10:30
parent 4d34d3a44f
commit 0c50419eb0
3 changed files with 6 additions and 4 deletions

View File

@ -4,7 +4,7 @@
" URL:https://github.com/fenetikm/falcon
" Author: Michael Welford
" License: MIT
" Last Change: 2019/11/29 09:39
" Last Change: 2019/12/04 09:14
" ============================================================
let g:airline#themes#falcon#palette = {}

View File

@ -4,7 +4,7 @@
" URL: https://github.com/fenetikm/falcon
" Author: Michael Welford
" License: MIT
" Last Change: 2019/11/29 09:39
" Last Change: 2019/12/04 09:14
" ===============================================================
set background=dark
@ -373,7 +373,7 @@ hi Sneak guifg=#bfdaff ctermfg=153 guibg=NONE ctermbg=NONE gui=underline cterm=u
hi link SneakLabel Sneak
hi link sqlStatement Function
hi sqlKeyword guifg=#ddcfbf ctermfg=187 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi sqlSpecial guifg=#ff3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi link sqlSpecial Number
hi sqlType guifg=#99a4bc ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi link sqlFunction Title
hi link mysqlKeyword sqlKeyword
@ -381,6 +381,7 @@ hi link mysqlOperator Operator
hi link mysqlFunction sqlType
hi link mysqlStatement sqlStatement
hi link mysqlType sqlType
hi link Quote Delimiter
hi sshconfigKeyword guifg=#99a4bc ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi sshconfigMatch guifg=#99a4bc ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi sshconfigYesNo guifg=#ff3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE

View File

@ -1,6 +1,6 @@
sqlStatement: '@Function'
sqlKeyword: 'tan'
sqlSpecial: 'red'
sqlSpecial: '@Number'
sqlType: 'blue_gray'
sqlFunction: '@Title'
mysqlKeyword: '@sqlKeyword'
@ -8,3 +8,4 @@ mysqlOperator: '@Operator'
mysqlFunction: '@sqlType'
mysqlStatement: '@sqlStatement'
mysqlType: '@sqlType'
Quote: '@Delimiter'