mirror of https://github.com/zpl-zak/nvimrc
8 lines
158 B
Lua
8 lines
158 B
Lua
|
return { -- Theme inspired by Atom
|
||
|
'navarasu/onedark.nvim',
|
||
|
priority = 1000,
|
||
|
config = function()
|
||
|
vim.cmd.colorscheme 'onedark'
|
||
|
end,
|
||
|
}
|