mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
18 lines
369 B
Lua
18 lines
369 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
|
|
|
|
vim.cmd([[
|
|
silent! colorscheme tokyonight-night
|
|
highlight ColorColumn guibg=#202224
|
|
highlight SpellBad guifg=red
|
|
highlight Winseparator guifg=#1F2335 guibg=None
|
|
]])
|