nvim-config/after/plugin/colors.lua

57 lines
1.1 KiB
Lua
Raw Permalink Normal View History

2022-11-01 18:09:46 +01:00
-- vim.g.serxoz_colorscheme = "tokyonight"
2022-11-16 09:14:29 +01:00
vim.g.serxoz_colorscheme = "gruvbox"
2022-11-01 18:09:46 +01:00
-- vim.g.serxoz_colorscheme = "catppuccin"
-- vim.g.serxoz_colorscheme = "rose-pine"
2022-11-15 16:08:10 +01:00
-- vim.g.serxoz_colorscheme = "nord"
2022-11-16 08:55:06 +01:00
-- vim.g.serxoz_colorscheme = "night-owl"
2022-11-16 09:14:29 +01:00
-- vim.g.serxoz_colorscheme = "onedark"
2022-11-01 18:09:46 +01:00
require("catppuccin").setup({
transparent_background = false,
});
2022-11-16 08:55:06 +01:00
require('onedark').setup {
style = 'darker'
}
2022-11-01 18:09:46 +01:00
function ColorMyPencils()
vim.g.gruvbox_contrast_dark = 'hard'
vim.g.tokyonight_transparent_sidebar = true
vim.g.tokyonight_transparent = true
vim.g.gruvbox_invert_selection = '0'
vim.cmd("colorscheme " .. vim.g.serxoz_colorscheme)
local hl = function(thing, opts)
vim.api.nvim_set_hl(0, thing, opts)
end
hl("SignColumn", {
bg = "none",
})
hl("ColorColumn", {
ctermbg = 0,
bg = "#272727",
})
hl("CursorLineNR", {
bg = "None"
})
hl("Normal", {
bg = "none"
})
2022-11-16 08:55:06 +01:00
hl("LineNr", {
fg = "#5eacd3"
})
hl("netrwDir", {
fg = "#5eacd3"
})
2022-11-01 18:09:46 +01:00
2022-11-15 16:08:10 +01:00
vim.opt.background = "dark"
2022-11-01 18:09:46 +01:00
end
ColorMyPencils()