Added custom theme

This commit is contained in:
2023-06-11 14:23:26 +02:00
parent 268432243e
commit c50773fb8c
10 changed files with 587 additions and 7 deletions

View File

@@ -77,14 +77,22 @@ vim.opt.rtp:prepend(lazypath)
-- Plugin installation
-------------------------------------------------------------------
require('lazy').setup({
-- {
-- 'Alexis12119/nightly.nvim',
-- priority = 1000,
-- config = function()
-- vim.cmd.colorscheme 'nightly_cm'
-- end,
-- },
{
'Alexis12119/nightly.nvim',
dir= "~/code_server/nightly_cm.nvim",
priority = 1000,
config = function()
vim.cmd.colorscheme 'nightly'
vim.cmd.colorscheme 'nightly_cm'
end,
},
{
-- LSP Configuration & Plugins
'neovim/nvim-lspconfig',
@@ -186,7 +194,7 @@ require('lazy').setup({
opts = {
options = {
icons_enabled = true,
theme = 'auto',
theme = 'nightly_cm',
component_separators = '|',
section_separators = '',
globalstatus = true,
@@ -281,6 +289,13 @@ require('lazy').setup({
},
},
{
"norcalli/nvim-colorizer.lua",
config = function()
require("colorizer").setup()
end,
},
}, {})
-------------------------------------------------------------------
@@ -608,6 +623,6 @@ vim.keymap.set('n', '<leader>n', ":tabnew<cr>", { desc = 'Format code', silent =
vim.keymap.set('n', '<leader>c', ":tabclose<cr>", { desc = 'Format code', silent = true })
-- Customization for Pmenu
vim.api.nvim_set_hl(0, "PmenuSel", { bg = "#555555", fg = "NONE" })
vim.api.nvim_set_hl(0, "Pmenu", { fg = "#C5CDD9", bg = "#000000" })
vim.api.nvim_set_hl(0, "CmpItemAbbr", { fg = "#eeeeee", bg = "NONE" })
-- vim.api.nvim_set_hl(0, "PmenuSel", { bg = "#555555", fg = "NONE" })
-- vim.api.nvim_set_hl(0, "Pmenu", { fg = "#C5CDD9", bg = "#000000" })
-- vim.api.nvim_set_hl(0, "CmpItemAbbr", { fg = "#eeeeee", bg = "NONE" })