dotfiles/.config/nvim/lua/plugins/theme.lua
2023-05-03 14:35:45 +01:00

6 lines
133 B
Lua

local colorscheme = "onedark"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
return
end