Files
dotfiles/nvim/lua/kogakure/colorscheme.lua
2022-09-30 20:40:27 +02:00

23 lines
476 B
Lua

-- Colorschemes
-- Base16 Theme
local source = "~/.vimrc_background"
local status_ok, _ = pcall(vim.cmd, "source " .. source)
if not status_ok then
vim.notify("Error sourcing " .. source)
return
end
-- Catppuccin Theme
vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
require("catppuccin").setup()
-- Set colorscheme and additional colors
vim.cmd([[
colorscheme tokyonight-night
highlight ColorColumn guibg=#202224
highlight SpellBad guifg=red
]])