Compare commits
2 Commits
02b453f86c
...
bf7c4fcea5
Author | SHA1 | Date | |
---|---|---|---|
bf7c4fcea5 | |||
7f856981a6 |
7
.lazygit
7
.lazygit
@ -1,3 +1,8 @@
|
|||||||
|
customCommands:
|
||||||
|
- key: '<c-P>'
|
||||||
|
context: 'global'
|
||||||
|
command: 'git push --force-with-lease'
|
||||||
|
description: 'Force push with lease.'
|
||||||
gui:
|
gui:
|
||||||
timeFormat: '2006-01-02'
|
timeFormat: '2006-01-02'
|
||||||
mouseEvents: false
|
mouseEvents: false
|
||||||
@ -21,8 +26,6 @@ gui:
|
|||||||
- '#4c4f69'
|
- '#4c4f69'
|
||||||
searchingActiveBorderColor:
|
searchingActiveBorderColor:
|
||||||
- '#df8e1d'
|
- '#df8e1d'
|
||||||
|
|
||||||
|
|
||||||
authorColors:
|
authorColors:
|
||||||
'*': '#7287fd'
|
'*': '#7287fd'
|
||||||
|
|
||||||
|
15
nvim/lua/custom/plugins/focus.lua
Normal file
15
nvim/lua/custom/plugins/focus.lua
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
-- Resize window to prioritize the focused on.
|
||||||
|
-- https://github.com/nvim-focus/focus.nvim
|
||||||
|
return {
|
||||||
|
'nvim-focus/focus.nvim',
|
||||||
|
opts = {
|
||||||
|
enable = true,
|
||||||
|
ui = {
|
||||||
|
-- Display line numbers in the focused window only.
|
||||||
|
hybridnumber = true,
|
||||||
|
|
||||||
|
-- Display signcolumn in the focussed window only
|
||||||
|
signcolumn = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user