Skip to content

Commit 17ae84a

Browse files
committed
fix: material style
1 parent 352c43b commit 17ae84a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

init.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ vim.g.maplocalleader = ' '
9595
vim.g.have_nerd_font = true
9696

9797
-- ME: change the Material style
98-
-- vim.g.material_style = 'oceanic'
98+
vim.g.material_style = 'oceanic'
9999
-- [[ Setting options ]]
100100
-- See `:help vim.opt`
101101
-- NOTE: You can change these options as you wish!
@@ -908,7 +908,7 @@ require('lazy').setup({
908908
priority = 1000, -- Make sure to load this before all the other start plugins.
909909
config = function()
910910
---@diagnostic disable-next-line: missing-fields
911-
require('tokyonight').setup {
911+
require('material').setup {
912912
styles = {
913913
comments = { italic = false }, -- Disable italics in comments
914914
},
@@ -917,7 +917,7 @@ require('lazy').setup({
917917
-- Load the colorscheme here.
918918
-- Like many other themes, this one has different styles, and you could load
919919
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
920-
vim.cmd.colorscheme 'tokyonight-night'
920+
vim.cmd.colorscheme 'material'
921921

922922
-- You can configure highlights by doing something like:
923923
vim.cmd.hi 'Comment gui=none'

0 commit comments

Comments
 (0)