dotfiles/nvim/lua/themes.lua

11 lines
219 B
Lua
Raw Normal View History

2022-02-20 11:25:12 +00:00
-- source file everytime it changes
vim.cmd([[
augroup user_theme_config
autocmd!
autocmd BufWritePost themes.lua source <afile>
augroup end
]])
vim.opt.background = 'dark'
2022-02-21 14:15:15 +00:00
vim.cmd("colorscheme solarized")