work in progress, migrating to lazy
This commit is contained in:
11
lua/plugins/colors.lua
Normal file
11
lua/plugins/colors.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
function ColorMyPencils(color)
|
||||
color = color or "dichromatic"
|
||||
vim.cmd.colorscheme(color)
|
||||
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
end
|
||||
|
||||
vim.keymap.set("n", "<leader>c", function() ColorMyPencils() end)
|
||||
|
||||
ColorMyPencils()
|
||||
Reference in New Issue
Block a user