From 6db7af8bd24bffe16741848da696b6ff99937ad4 Mon Sep 17 00:00:00 2001 From: topper3418 <67675579+topper3418@users.noreply.github.com> Date: Mon, 22 Jul 2024 06:56:27 -0500 Subject: [PATCH] added lazygit --- lua/plugins/init.lua | 5 ++--- lua/settings.lua | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index b3ada3b8..711ad3c1 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -665,10 +665,9 @@ require('lazy').setup({ require 'plugins.kickstart.neo-tree', require 'plugins.kickstart.gitsigns', -- adds gitsigns recommend keymaps - -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` - -- This is the easiest way to modularize your config. - -- + -- require topper3418 plugins require 'plugins.topper3418.oil', + require 'plugins.topper3418.lazygit', }, { ui = { -- If you are using a Nerd Font: set icons to an empty table which will use the diff --git a/lua/settings.lua b/lua/settings.lua index 6fd22f32..8fa821c6 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -4,7 +4,7 @@ vim.opt.foldexpr = 'nvim_treesitter#foldexpr()' vim.opt.foldlevelstart = 99 -- relative line numbers and line numbers vim.opt.nu = true -vim.opt.relativenumber = true +vim.opt.rnu = true -- tabbing options vim.opt.tabstop = 4 vim.opt.softtabstop = 4