1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-16 13:02:39 +00:00
dotfiles/.config/nvim/lua/core/colorscheme.lua

15 lines
246 B
Lua

local colorscheme = "tokyonight"
require("tokyonight").setup({
style = "moon",
styles = {
sidebars = "normal",
floats = "normal",
},
})
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
return
end