summary refs log tree commit diff
path: root/.vim/colors/lush.vim
blob: 6759fb4971c8d18f3a9737edeb2f099b988a6aca (plain) (blame)
1
2
3
4
5
6
7
8
9
lua << EOF
vim.opt.background = 'dark'

if vim.opt.termguicolors:get() then
  vim.g.colors_name = 'lush'
  require('lush')(require('colors'))
end
EOF