dotfiles/.config/nvim/lua/plugins/theme.lua

7 lines
133 B
Lua
Raw Normal View History

2022-10-19 00:47:07 +01:00
local colorscheme = "onedark"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
return
end