This commit is contained in:
thereclaimer 2025-04-04 15:14:30 -05:00
parent b721931ef8
commit d27359351c
4 changed files with 53 additions and 20 deletions

View file

@ -720,21 +720,6 @@ require('lazy').setup({
-- - sr)' - [S]urround [R]eplace [)] [']
require('mini.surround').setup()
-- Simple and easy statusline.
-- You could remove this setup call if you don't like it,
-- and try some other statusline plugin
local statusline = require 'mini.statusline'
-- set use_icons to true if you have a Nerd Font
statusline.setup { use_icons = vim.g.have_nerd_font }
-- You can configure sections in the statusline by overriding their
-- default behavior. For example, here we set the section for
-- cursor location to LINE:COLUMN
---@diagnostic disable-next-line: duplicate-set-field
statusline.section_location = function()
return '%2l:%-2v'
end
-- ... and there is more!
-- Check out: https://github.com/echasnovski/mini.nvim
end,
@ -782,6 +767,7 @@ require('lazy').setup({
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
require 'sld.gruvbox',
require 'sld.tree',
require 'sld.lualine',
-- 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.
--