mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
17 lines
321 B
Lua
17 lines
321 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
|
|
]])
|