10 lines
394 B
Lua
10 lines
394 B
Lua
-- fugitive
|
|
vim.opt.diffopt = vim.opt.diffopt + { vertical = true }
|
|
|
|
-- gitgutter
|
|
vim.g.gitgutter_sign_modified = '>'
|
|
vim.g.gitgutter_sign_modified_removed = '>_'
|
|
|
|
-- better whitespace config: do not show whitespace when open the following file types
|
|
vim.g.better_whitespace_filetypes_blacklist = {'<etc>', 'startify', 'diff', 'git', 'gitcommit', 'unite', 'qf', 'help', 'markdown', 'fugitive'}
|