1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-02 13:20:27 +00:00
dotfiles/.config/nvim/lua/user/colorscheme.lua

14 lines
229 B
Lua

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