Skip to content

Commit d48d2ea

Browse files
committed
Change colorscheme to 'solarized'
Change have_nerd_font to 'true'
1 parent 3338d39 commit d48d2ea

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

init.lua

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191
vim.g.maplocalleader = ' '
9292

9393
-- Set to true if you have a Nerd Font installed and selected in the terminal
94-
vim.g.have_nerd_font = false
94+
vim.g.have_nerd_font = true
9595

9696
-- [[ Setting options ]]
9797
-- See `:help vim.o`
@@ -881,20 +881,22 @@ require('lazy').setup({
881881
-- change the command in the config to whatever the name of that colorscheme is.
882882
--
883883
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
884-
'folke/tokyonight.nvim',
884+
'maxmx03/solarized.nvim',
885885
priority = 1000, -- Make sure to load this before all the other start plugins.
886886
config = function()
887+
--[[
887888
---@diagnostic disable-next-line: missing-fields
888-
require('tokyonight').setup {
889+
require('solarized').setup {
889890
styles = {
890891
comments = { italic = false }, -- Disable italics in comments
891892
},
892893
}
894+
--]]
893895

894896
-- Load the colorscheme here.
895897
-- Like many other themes, this one has different styles, and you could load
896898
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
897-
vim.cmd.colorscheme 'tokyonight-night'
899+
vim.cmd.colorscheme 'solarized'
898900
end,
899901
},
900902

0 commit comments

Comments
 (0)