Mercurial > dotfiles
comparison .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 |
comparison
equal
deleted
inserted
replaced
522:fb4ecca62a55 | 523:d6b4520b8257 |
---|---|
534 -- File navigation | 534 -- File navigation |
535 use { 'justinmk/vim-dirvish', opt = true } | 535 use { 'justinmk/vim-dirvish', opt = true } |
536 | 536 |
537 -- Colorscheme | 537 -- Colorscheme |
538 use { | 538 use { |
539 'zegervdv/one-lush', | 539 'navarasu/onedark.nvim', |
540 requires = 'rktjmp/lush.nvim', | 540 config = function() |
541 config = function() | 541 require('onedark').setup { |
542 require 'lush_theme.one-lush' | 542 style = 'dark', |
543 vim.cmd [[ colorscheme one-lush ]] | 543 code_style = { |
544 comments = 'italic', | |
545 }, | |
546 ending_tildes = true, | |
547 diagnostics = { | |
548 darker = false, | |
549 undercurl = false, | |
550 background = false, | |
551 }, | |
552 } | |
553 require('onedark').load() | |
544 end, | 554 end, |
545 } | 555 } |
546 | 556 |
547 -- Terminal | 557 -- Terminal |
548 use { | 558 use { |