mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
update nvim config
This commit is contained in:
parent
e3f9d23175
commit
1e68462bc1
21 changed files with 350 additions and 99 deletions
|
|
@ -1,3 +1,5 @@
|
|||
local icons = require('config.icons').diff_gutter
|
||||
|
||||
return {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
lazy = false,
|
||||
|
|
@ -7,10 +9,12 @@ return {
|
|||
},
|
||||
opts = {
|
||||
signs = {
|
||||
add = { text = '▌' },
|
||||
delete = { text = '' },
|
||||
change = { text = '▌' },
|
||||
untracked = { text = '+'}
|
||||
add = { text = icons.add },
|
||||
delete = { text = icons.delete },
|
||||
change = { text = icons.change },
|
||||
untracked = { text = icons.untracked },
|
||||
topdelete = { text = icons.delete },
|
||||
changedelete = { text = icons.change },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue