Adding custom color schemes.

This commit is contained in:
calcu1on
2025-07-31 12:27:11 -04:00
parent 074e475d40
commit 6eda929dd3
5 changed files with 748 additions and 2 deletions

View File

@@ -14,12 +14,16 @@ if not vim.loop.fs_stat(lazypath) then
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins")
-- SET NEOVIM THEME --
vim.o.termguicolors = true
-- vim.cmd "let g:everforest_background = 'hard'"
vim.cmd.colorscheme('kanagawa')
vim.cmd.colorscheme('sistine')
vim.o.background = "dark"
-- Load Plugins
require("lazy").setup("plugins")
vim.keymap.set("n", "<leader>ct", "<cmd>Telescope colorscheme<CR>")
-- LSP --