mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 17:28:50 +02:00
7 lines
181 B
Lua
7 lines
181 B
Lua
-- local colorscheme = "tokyonight-night"
|
|
local colorscheme = "onedark"
|
|
|
|
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
|
if not status_ok then
|
|
return
|
|
end
|