Compare commits

...

3 Commits

Author SHA1 Message Date
tgrosinger 164742fd67 Neovim: Bufferline fix that can probably be removed after an update 2025-11-27 10:45:34 -08:00
tgrosinger 18780cc837 Git: Remove map-styles 2025-11-27 10:44:06 -08:00
tgrosinger 955b7ca0bb Lazygit: Update config 2025-11-27 10:43:58 -08:00
3 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -62,7 +62,7 @@
light = true
side-by-side = true
line-numbers = true
map-styles = bold purple => syntax magenta, bold cyan => syntax blue
#map-styles = bold purple => syntax magenta, bold cyan => syntax blue
[branch]
autosetuprebase = always
+4 -3
View File
@@ -1,8 +1,9 @@
customCommands:
- key: "<c-P>"
context: "global"
command: "git push --force-with-lease"
- command: "git push --force-with-lease"
context: "commits,localBranches"
description: "Force push with lease."
key: "x"
promptToReturnFromSubprocess: false # removes "press enter to return to lazygit" popup
git:
autoForwardBranches: "none"
os:
+11
View File
@@ -0,0 +1,11 @@
-- This can be removed once the fix is merged upstream.
-- See https://github.com/LazyVim/LazyVim/pull/6354
return {
"akinsho/bufferline.nvim",
init = function()
local bufline = require("catppuccin.groups.integrations.bufferline")
function bufline.get()
return bufline.get_theme()
end
end,
}