@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
91
91
vim .g .maplocalleader = ' '
92
92
93
93
-- 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
95
95
96
96
-- [[ Setting options ]]
97
97
-- See `:help vim.o`
@@ -881,20 +881,22 @@ require('lazy').setup({
881
881
-- change the command in the config to whatever the name of that colorscheme is.
882
882
--
883
883
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
884
- ' folke/tokyonight .nvim' ,
884
+ ' maxmx03/solarized .nvim' ,
885
885
priority = 1000 , -- Make sure to load this before all the other start plugins.
886
886
config = function ()
887
+ --[[
887
888
---@diagnostic disable-next-line : missing-fields
888
- require (' tokyonight ' ).setup {
889
+ require('solarized ').setup {
889
890
styles = {
890
891
comments = { italic = false }, -- Disable italics in comments
891
892
},
892
893
}
894
+ --]]
893
895
894
896
-- Load the colorscheme here.
895
897
-- Like many other themes, this one has different styles, and you could load
896
898
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
897
- vim .cmd .colorscheme ' tokyonight-night '
899
+ vim .cmd .colorscheme ' solarized '
898
900
end ,
899
901
},
900
902
0 commit comments