nvim/after/plugin/colors.lua

19 lines
509 B
Lua
Raw Normal View History

2024-01-08 02:41:27 +01:00
function ColorMyPencils(color)
color = color or "rose-pine"
vim.cmd.colorscheme(color)
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
2024-05-09 13:06:54 +02:00
function LineNumberColors()
vim.api.nvim_set_hl(0, 'LineNrAbove', { fg='#51B3EC', bold=true})
vim.api.nvim_set_hl(0, 'LineNr', { fg='white', bold=true })
2024-05-09 16:48:22 +02:00
vim.api.nvim_set_hl(0, 'LineNrBelow', { fg='#FB508F', bold=true})
2024-05-09 13:06:54 +02:00
vim.o.signcolumn = "auto"
end
2024-05-09 01:18:28 +02:00
-- ColorMyPencils()
2024-05-09 13:06:54 +02:00
LineNumberColors()