aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/colourscheme.lua
blob: 3f7c4341e424c0c06bb4274fd779b4607fed8a57 (plain)
1
2
3
4
5
6
7
8
9
vim.pack.add({"https://github.com/serhez/teide.nvim"})

local function ColorMyPencils()
  vim.cmd([[colorscheme teide-darker]])
  vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
  vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end

ColorMyPencils()