From 6ecc6f96c43a98f2ed0a64d16d71b5cae8828a54 Mon Sep 17 00:00:00 2001 From: Austin Daily <135095754+austindaily@users.noreply.github.com> Date: Mon, 11 Mar 2024 20:00:10 -0400 Subject: [PATCH] Update init.lua --- init.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 62b91fa5..34bc1447 100644 --- a/init.lua +++ b/init.lua @@ -97,6 +97,7 @@ vim.g.maplocalleader = ' ' -- Make line numbers default vim.opt.number = true +vim.opt.relativenumber = true -- You can also add relative line numbers, for help with jumping. -- Experiment for yourself to see if you like it! -- vim.opt.relativenumber = true @@ -725,12 +726,12 @@ 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` - 'folke/tokyonight.nvim', + 'catppuccin/nvim', lazy = false, -- make sure we load this during startup if it is your main colorscheme priority = 1000, -- make sure to load this before all the other start plugins config = function() -- Load the colorscheme here - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'catppuccin' -- You can configure highlights by doing something like vim.cmd.hi 'Comment gui=none' @@ -809,8 +810,11 @@ require('lazy').setup({ -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, }, {}) -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et + +-- Override default Grey Color Line Number with White +vim.cmd 'highlight LineNr guifg=#ffffff'