This commit is contained in:
Never Gude 2025-12-02 20:00:36 +01:00
parent e032307f8d
commit 75457315b2

View file

@ -83,6 +83,8 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now! :)
--]]
vim.o.guifont = 'SauceCodePro NF:h12'
vim.o.autochdir = true
-- Set <space> as the leader key
-- See `:help mapleader`
@ -91,7 +93,7 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
-- [[ Setting options ]]
-- See `:help vim.o`
@ -881,11 +883,11 @@ require('lazy').setup({
-- 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`.
'maxmx03/solarized.nvim',
'ellisonleao/gruvbox.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
---@diagnostic disable-next-line: missing-fields
require('solarized').setup {
require('gruvbox').setup {
-- styles = {
-- comments = { italic = false }, -- Disable italics in comments
-- },
@ -894,7 +896,7 @@ require('lazy').setup({
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'solarized'
vim.cmd.colorscheme 'gruvbox'
end,
},