update colorscheme to dracula

This commit is contained in:
Stuart Stephens 2026-01-31 15:28:18 -05:00
parent 10f5ddacd4
commit e5525872fe
1 changed files with 4 additions and 3 deletions

View File

@ -902,11 +902,11 @@ require('lazy').setup({
-- change the command in the config to whatever the name of that colorscheme is. -- change the command in the config to whatever the name of that colorscheme is.
-- --
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'craftzdog/solarized-osaka.nvim', 'Mofiqul/dracula.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins. priority = 1000, -- Make sure to load this before all the other start plugins.
config = function() config = function()
---@diagnostic disable-next-line: missing-fields ---@diagnostic disable-next-line: missing-fields
require('solarized-osaka').setup { require('dracula').setup {
-- require('tokyonight').setup { -- require('tokyonight').setup {
styles = { styles = {
comments = { italic = false }, -- Disable italics in comments comments = { italic = false }, -- Disable italics in comments
@ -919,7 +919,8 @@ require('lazy').setup({
-- vim.cmd.colorscheme 'tokyonight-night' -- vim.cmd.colorscheme 'tokyonight-night'
-- vim.cmd.colorscheme 'solarized-osaka' -- vim.cmd.colorscheme 'solarized-osaka'
vim.opt.termguicolors = true vim.opt.termguicolors = true
vim.cmd.colorscheme 'murphy' -- vim.cmd.colorscheme 'murphy'
vim.cmd.colorscheme 'dracula'
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'