mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
9 lines
210 B
Lua
9 lines
210 B
Lua
|
local colorscheme = "tokyonight-night"
|
||
|
-- local colorscheme = "nord"
|
||
|
-- local colorscheme = "lunar"
|
||
|
|
||
|
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|