update: add new 'onedark' theme for neovim

This commit is contained in:
juancwu 2023-01-09 23:05:11 -05:00 committed by Jc
commit 7201fff355
3 changed files with 16 additions and 2 deletions

View file

@ -5,7 +5,7 @@ if (not status) then return end
lualine.setup {
options = {
icons_enabled = true,
theme = 'solarized_dark',
theme = 'onedark',
section_separators = {
left = '',
right = ''

View file

@ -0,0 +1,13 @@
local status, onedark = pcall(require, 'onedark')
if not status then return end
onedark.setup {
style = 'dark',
transparent = true,
lualine = {
transparent = true, -- Set to true when using 'onedark' theme
}
}
onedark.load()

View file

@ -18,7 +18,8 @@ return require('packer').startup(function(use)
-- colorscheme
use "tjdevries/colorbuddy.nvim"
use "svrana/neosolarized.nvim"
-- use "svrana/neosolarized.nvim"
use "navarasu/onedark.nvim"
-- treesitter baby
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })