Removed gitblame and neoclip

This commit is contained in:
Oliver Hartmann
2022-02-01 13:11:53 +01:00
parent 0d93bc8fa5
commit 577a3cd1a7
2 changed files with 10 additions and 8 deletions

View File

@ -31,7 +31,15 @@ require('nvim-treesitter.configs').setup({
}
})
-------------------- GITSIGNS ------------------------------
require('gitsigns').setup()
require('gitsigns').setup({
current_line_blame = true,
current_line_blame_opts = {
virt_text = true,
virt_text_pos = 'right_align', -- 'eol' | 'overlay' | 'right_align'
delay = 1000,
ignore_whitespace = false,
},
})
-------------------- NVIM-TREE -----------------------------
require('nvim-tree').setup({
auto_close = true,
@ -84,11 +92,6 @@ opt.errorformat:append("\\ %#%f(%l\\\\\\,%c):\\ %m")
-- cl.exe errorformat
-- o.errorformat:append('\ %#%f(%l) : %#%t%[A-z]%# %m')
-------------------- NEOCLIP -------------------------------
require('neoclip').setup({
default_register = '+',
})
require('telescope').load_extension('neoclip')
-------------------- LUALINE -------------------------------
require('lualine').setup {
options = {theme = 'gruvbox-material'},