nvim colors

This commit is contained in:
Daniel Lundin 2020-08-21 08:27:03 +02:00
parent d6785ea38a
commit e514f9d593
No known key found for this signature in database
GPG key ID: 6AB527C9196ACDCC
2 changed files with 7 additions and 3 deletions

View file

@ -297,7 +297,7 @@ endfun
call <sid>hi("Floating", s:blue_grey_400, "", "")
call <sid>hi("MsgArea", s:orange_900, "", "")
call <sid>hi("Normal", s:white_1000, "", "")
call <sid>hi("Normal", "#a1b0b8", "", "")
call <sid>hi("Bold", "", "", "bold")
call <sid>hi("Italic", "", "", "italic")
call <sid>hi("VertSplit", "#112131", s:blue_grey_800, "")
@ -310,8 +310,10 @@ call <sid>hi("Search", "", s:amber_500, "none")
call <sid>hi("Bookmark", s:black_1000, s:yellow_700, "none")
call <sid>hi("Todo", s:yellow_100, s:orange_900, "none")
call <sid>hi("CursorLine", "", "#112131", "")
call <sid>hi("CursorLineNR", s:grey_500, "#334455", "")
" call <sid>hi("CursorLine", "", "#112131", "")
" call <sid>hi("CursorLineNR", s:grey_500, "#334455", "")
call <sid>hi("CursorLine", "", "#011121", "")
call <sid>hi("CursorLineNR", s:blue_grey_500, "#112131", "")
call <sid>hi("Folded", s:purple_200, s:deep_purple_900, "")
call <sid>hi("Pmenu", s:blue_grey_500, "#112131", "none")

View file

@ -246,6 +246,7 @@ map <silent> <leader>; :Commits<cr>
map <silent> <leader>e :GitFiles<cr>
map <silent> <leader>d :Files<cr>
map <silent> <leader>f :History<cr>
" map <silent> <leader>g :BLines<cr>
map <silent> <leader>/ :Ag<cr>
map <silent> <leader>m :Marks<cr>
@ -523,6 +524,7 @@ function! CreateCenteredFloatingWindow()
au BufWipeout <buffer> exe 'bw '.s:buf
endfunction
let g:fzf_preview_window = ''
let g:fzf_layout = { 'up': '~40%', 'window': 'call CreateCenteredFloatingWindow()' }
let g:fzf_colors =
\ { 'fg': ['fg', 'Comment'],