Compare commits
3 Commits
d13e517eb6
...
164742fd67
| Author | SHA1 | Date | |
|---|---|---|---|
| 164742fd67 | |||
| 18780cc837 | |||
| 955b7ca0bb |
@@ -62,7 +62,7 @@
|
|||||||
light = true
|
light = true
|
||||||
side-by-side = true
|
side-by-side = true
|
||||||
line-numbers = 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]
|
[branch]
|
||||||
autosetuprebase = always
|
autosetuprebase = always
|
||||||
|
|||||||
7
.lazygit
7
.lazygit
@@ -1,8 +1,9 @@
|
|||||||
customCommands:
|
customCommands:
|
||||||
- key: "<c-P>"
|
- command: "git push --force-with-lease"
|
||||||
context: "global"
|
context: "commits,localBranches"
|
||||||
command: "git push --force-with-lease"
|
|
||||||
description: "Force push with lease."
|
description: "Force push with lease."
|
||||||
|
key: "x"
|
||||||
|
promptToReturnFromSubprocess: false # removes "press enter to return to lazygit" popup
|
||||||
git:
|
git:
|
||||||
autoForwardBranches: "none"
|
autoForwardBranches: "none"
|
||||||
os:
|
os:
|
||||||
|
|||||||
11
nvim/lua/plugins/bufferline.lua
Normal file
11
nvim/lua/plugins/bufferline.lua
Normal 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,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user