feat: change colorscheme to Tokyo Night

This commit is contained in:
Stefan Imhoff
2022-09-30 20:16:26 +02:00
parent 9f19e41302
commit 896632d080
11 changed files with 275 additions and 11 deletions

View File

@@ -1,13 +1,16 @@
-- Colorscheme
-- Base16
local source = "~/.vimrc_background"
local status_ok, _ = pcall(vim.cmd, "source " .. source)
if not status_ok then
vim.notify("Error sourcing " .. source)
--[[ vim.notify("Error sourcing " .. source) ]]
return
end
vim.cmd([[
colorscheme tokyonight-night
highlight ColorColumn guibg=#202224
highlight SpellBad guifg=red
]])

View File

@@ -50,6 +50,7 @@ return packer.startup(function(use)
-- Colorscheme
use("chriskempson/base16-vim") -- Base16 colorschemes
use("folke/tokyonight.nvim") -- Tokyo Night color scheme
-- CMP
use("hrsh7th/nvim-cmp") -- The completion plugin