neovim conf part 3
This commit is contained in:
parent
6f23ebd0f5
commit
ac7ba4097d
16 changed files with 773 additions and 462 deletions
23
.config/nvim/lua/config/plugins/git.lua
Normal file
23
.config/nvim/lua/config/plugins/git.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
return {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
opts = {
|
||||
signs = {
|
||||
add = { text = '┃' },
|
||||
change = { text = '┃' },
|
||||
delete = { text = '_' },
|
||||
topdelete = { text = '‾' },
|
||||
changedelete = { text = '~' },
|
||||
untracked = { text = '┆' },
|
||||
},
|
||||
-- signs_staged = {
|
||||
-- add = { text = '┃' },
|
||||
-- change = { text = '┃' },
|
||||
-- delete = { text = '_' },
|
||||
-- topdelete = { text = '‾' },
|
||||
-- changedelete = { text = '~' },
|
||||
-- untracked = { text = '┆' },
|
||||
-- },
|
||||
signs_staged_enable = false,
|
||||
signcolumn = true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue