Mercurial > dotfiles
diff .chezmoitemplates/init.lua @ 523:d6b4520b8257
Replace colorscheme with onedark.nvim
author | zegervdv <zegervdv@me.com> |
---|---|
date | Tue, 11 Jan 2022 08:41:07 +0100 |
parents | fb4ecca62a55 |
children | 8d0846b75095 |
line wrap: on
line diff
--- a/.chezmoitemplates/init.lua Mon Jan 10 18:49:13 2022 +0100 +++ b/.chezmoitemplates/init.lua Tue Jan 11 08:41:07 2022 +0100 @@ -536,11 +536,21 @@ -- Colorscheme use { - 'zegervdv/one-lush', - requires = 'rktjmp/lush.nvim', + 'navarasu/onedark.nvim', config = function() - require 'lush_theme.one-lush' - vim.cmd [[ colorscheme one-lush ]] + require('onedark').setup { + style = 'dark', + code_style = { + comments = 'italic', + }, + ending_tildes = true, + diagnostics = { + darker = false, + undercurl = false, + background = false, + }, + } + require('onedark').load() end, }