From 75457315b297fd854da4c58be924588013414477 Mon Sep 17 00:00:00 2001 From: Never Gude Date: Tue, 2 Dec 2025 20:00:36 +0100 Subject: [PATCH] update --- init.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 5bc5ccc..377e957 100644 --- a/init.lua +++ b/init.lua @@ -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 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, },