Compare commits

..

2 Commits

Author SHA1 Message Date
bf7c4fcea5 Lazygit: Add custom command for push with lease 2024-06-02 08:55:55 -07:00
7f856981a6 Neovim: Setup focus 2024-06-01 16:02:42 -07:00
2 changed files with 20 additions and 2 deletions

View File

@ -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'

View 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,
},
},
}